結果
問題 | No.2708 Jewel holder |
ユーザー | forest3 |
提出日時 | 2024-07-13 18:34:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 817 bytes |
コンパイル時間 | 2,022 ms |
コンパイル使用メモリ | 175,528 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-13 18:34:53 |
合計ジャッジ時間 | 3,248 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for(int i = 0; i < n; i++) int main() { int H, W; cin >> H >> W; vector<string> s(H); rep(i, H) cin >> s[i]; int ans = 0; using P = pair<int, int>; queue<P> q; q.push(P(0, 1)); while(q.size()) { int t, c; tie(t, c) = q.front(); q.pop(); int y = t / W; int x = t % W; if(y == H - 1 && x == W - 1) ans++; if(y + 1 < H) { t = (y + 1) * W + x; if(s[y + 1][x] == 'o') { q.push(P(t, c + 1)); } else if(s[y + 1][x] == 'x') { if(c > 0) { q.push(P(t, c - 1)); } } } if(x + 1 < W) { t = y * W + x + 1; if(s[y][x + 1] == 'o') { q.push(P(t, c + 1)); } else if(s[y][x + 1] == 'x') { if(c > 0) { q.push(P(t, c - 1)); } } } } cout << ans << endl; }