Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111869 | I am BM | 不同路径 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 560 | 2023-11-25 08:34:39 |
#include<bits/stdc++.h> using namespace std; int last=0; void s(int,int); int main() { int i; cin>>i; bool map[i+1][i+1]; for (int a=1;a<=i;a++) { for (int b=1;b<=i;b++) { cin>>map[a][b]; } } s(i,i); return 0; } void s(int q,int p) { if (q==1&&p==1) { cout<<last; return; } if (q==1) { if (map[q][p-1]==0) last+=s(q,p-1); return; } if (p==1) { if (map[q-1][p]==0) last+=map[q-1][p]; return; } if (map[q-1][p]==0) last+=s(q-1,p); if (map[q][p-1]==0) last+=s(p,q-1); return; }