結果
問題 | No.2708 Jewel holder |
ユーザー | rinrion |
提出日時 | 2024-03-31 21:38:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,049 bytes |
コンパイル時間 | 3,390 ms |
コンパイル使用メモリ | 230,028 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 21:25:23 |
合計ジャッジ時間 | 4,013 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; #define rep(i, s, n) for(int i = s; i < (int)(n); i++) #define repr(i, s, n) for(int i = ((int)(n) - 1); i >= s; i--) #define sz(x) ((int)(x).size()) int h, w, ans; vector<char> a; #define ij_no(i, j) ((int) (i) * w + (int) (j)) #define no_i(no) ((int) no / w) #define no_j(no) ((int) no % w) bool frame_in(int ni, int nj, int h, int w){ if(0 <= ni && ni < h && 0 <= nj && nj < w) return true; else return false; } void dfs(int v, int jewel, int &ans){ if(a[v] == '#') return ; else if(a[v] == 'o') jewel ++; else jewel --; if(jewel < 0) return ; if(v == h * w - 1) ans ++; int nxi = no_i(v), nxj = no_j(v) + 1; if(frame_in(nxi, nxj, h, w)) dfs(ij_no(nxi, nxj), ans, jewel); nxi = no_i(v) + 1, nxj = no_j(v); if(frame_in(nxi, nxj, h, w)) dfs(ij_no(nxi, nxj), ans, jewel); } int main(){ cin >> h >> w; a.resize (h * w); rep(i, 0, h * w){ cin >> a[i]; } ans = 0; dfs(0, 0, ans); cout << ans << endl; }