結果
問題 | No.2708 Jewel holder |
ユーザー | 若杉勇弥 |
提出日時 | 2024-11-01 21:13:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 952 bytes |
コンパイル時間 | 796 ms |
コンパイル使用メモリ | 76,120 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-01 21:13:30 |
合計ジャッジ時間 | 1,914 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define MAXMONEY 300 int H, W; vector<vector<int>> cells; int check() { string cell; cin >> cell; if (cell == "o") return 1; else if (cell == "x") return -1; else return 0; } int walk(int i, int j, uint sum) { int cnt = 0; if (cells[i][j] == 0) // 通行止め return cnt; else // 通行可能 sum += cells[i][j]; if (i == H - 1 && j == W - 1) // goal return 1 ? sum == 0 : 0; if (i < H - 1) cnt += walk(i + 1, j, sum); // down if (j < W - 1) cnt += walk(i, j + 1, sum); // right return cnt; } int main() { cin >> H >> W; cells = vector<vector<int>>(H, vector<int>(W)); for (int i = 0; i < H; ++i) for (int j = 0; j < W; ++j) cells[i][j] = check(); int cnt = 0; cnt += walk(0, 0, 0); cout << cnt << endl; }