Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
132573 | 方文轩 | 骑士遍历1 | C++ | 解答错误 | 3 | 1000 MS | 252 KB | 515 | 2024-02-23 22:06:24 |
#include<bits/stdc++.h> using namespace std; int a,b,cnt=0; bool ss=1; int x[100001]; int se(int m,int n){ if(n>1&&m<b){ cnt++; x[cnt]=1; se(m+1,n-2); cnt--; } if(n>0&&m<b-1){ cnt++; x[cnt]=2; se(m+2,n-1); cnt--; } if(n<a&&m<b-1){ cnt++; x[cnt]=3; se(m+2,n+1); cnt--; } if(n<a-1&&m<b){ cnt++; x[cnt]=4; se(m+1,n+2); cnt--; } if(m==a&&n==b&&ss){ for(int i=1;i<=cnt;i++) cout<<x[i]<<" "; ss=0; } } int main(){ cin>>a>>b; se(1,1); }