結果

問題 No.2708 Jewel holder
ユーザー なななななな
提出日時 2024-03-31 14:45:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 939 bytes
コンパイル時間 1,666 ms
コンパイル使用メモリ 172,096 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-30 19:54:48
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 2 ms
6,824 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define rep(i, n) for (int i = 0; i < n; i++)
vector<vector<char>> c(10, vector<char>(10));
vector<int> x = {0, 1};
vector<int> y = {1, 0};
int h, w;
int ans = 0;
void dfs(int i, int j, int cost) {
  if (i == h - 1 && j == w - 1) {
    int i1 = i;
    int j1 = j;

    if (c[i1][j1] == 'o') {
      ans++;

    } else {
      if (cost != 0)
        ans++;
    }
  } else {
    for (int t = 0; t < 2; t++) {
      int i1 = i + x[t];
      int j1 = j + y[t];
      if (i1 < 0 || i1 >= h)
        continue;
      if (j1 < 0 || j1 >= w)
        continue;
      if (c[i1][j1] == '#')
        continue;
      else if (c[i1][j1] == 'o') {
        dfs(i1, j1, cost + 1);
      } else {
        if (cost != 0)
          dfs(i1, j1, cost - 1);
      }
    }
  }
}
signed main() {

  cin >> h >> w;

  rep(i, h) { rep(j, w) cin >> c[i][j]; }
  dfs(0, 0, 1);
  cout << ans << endl;
}
0