Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
111827 梁乃元 不同路径 C++ 运行出错 0 1 MS 4892 KB 540 2023-11-25 08:21:19

Tests(0/3):


# include <iostream> using namespace std ; int a [1145] [1145] ; long long cnt = 0 , n ; void dfs ( int x , int y ) { if ( x == n && y == n ) { cnt ++ ; return ; } else { if ( a [x + 1] [y] == 0 ) { dfs ( x + 1 , y ) ; } if ( a [x] [y + 1] == 0 ) { dfs ( x , y + 1 ) ; } } return ; } int main ( ) { cin >> n ; for ( int i = 1 ; i <= n ; i ++ ) { for ( int j = 1 ; j <= n ; j ++ ) { cin >> a [i] [j] ; } } dfs ( 1 , 1 ) ; cout << cnt << endl ; return 0 ; }


测评信息: