結果

問題 No.20 砂漠のオアシス
ユーザー pessimistpessimist
提出日時 2024-10-22 17:03:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 1,160 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 213,440 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-22 17:03:18
合計ジャッジ時間 3,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int dp[200][200][2];
int main(){
  cin.tie(nullptr)->sync_with_stdio(false);
  int N, V, Ox, Oy; 
  cin >> N >> V >> Ox >> Oy;
  --Ox, --Oy;

  vector L(N, vector(N, 0));
  for(int i = 0; i < N; ++i){
    for(int j = 0; j < N; ++j){
      cin >> L[i][j];
    }
  }

  queue<tuple<int, int, int, int>> que;
  que.emplace(0, 0, 1, V);
  dp[0][0][1] = V;

  const int dirs[] = {0, 1, 0, -1, 0};
  while(!que.empty()){
    auto [y, x, has, vital] = que.front();
    que.pop();
    if(dp[y][x][has] > vital) continue;
    for(int k = 0; k < 4; ++k){
      int y2 = y + dirs[k + 1];
      int x2 = x + dirs[k];
      if(x2 < 0 || x2 >= N || y2 < 0 || y2 >= N) continue;
      if(vital <= L[y2][x2]) continue;
      int vital2 = vital - L[y2][x2];
      int has2 = has;
      if(has2 && y2 == Oy && x2 == Ox){
        vital2 *= 2;
        has2 = 0;
      }
      if(vital2 > dp[y2][x2][has2]){
        dp[y2][x2][has2] = vital2;
        que.emplace(y2, x2, has2, vital2);
      }
    }
  }

  if(dp[N - 1][N - 1][0] || dp[N - 1][N - 1][1]){
    cout << "YES";
  } else{
    cout << "NO";
  }
  cout << endl;
  return 0;
}
0