Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
104779 曾煦翔 过河卒 C++ 通过 100 0 MS 256 KB 735 2023-10-04 09:21:14

Tests(5/5):


#include <iostream> using namespace std; long long a , b , n , m , x[23][23] , ma[23][23]; void work(long long x,long long y) { ma[x][y] = true; ma[x - 1][y - 2] = true; ma[x - 2][y - 1] = true; ma[x - 2][y + 1] = true; ma[x - 1][y + 2] = true; ma[x + 1][y - 2] = true; ma[x + 2][y - 1] = true; ma[x + 2][y + 1] = true; ma[x + 1][y + 2] = true; } int main() { cin >> n >> m >> a >> b; a++;b++;n++;m++; work(a , b); x[1][1] = 1; for(int i = 1;i <= n;i++){ for(int j = 1;j <= m;j++){ if(i == 1 && j == 1)continue; if(ma[i][j] == 0) x[i][j] = x[i - 1][j] + x[i][j - 1]; } } cout << x[n][m]; return 0; }


测评信息: