結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー 👑 CleyLCleyL
提出日時 2023-06-30 16:53:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,481 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 80,448 KB
実行使用メモリ 9,512 KB
最終ジャッジ日時 2024-07-07 04:32:39
合計ジャッジ時間 4,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 49 ms
9,284 KB
testcase_08 AC 97 ms
9,444 KB
testcase_09 AC 97 ms
9,420 KB
testcase_10 AC 94 ms
9,376 KB
testcase_11 AC 95 ms
9,372 KB
testcase_12 AC 70 ms
9,424 KB
testcase_13 AC 68 ms
9,256 KB
testcase_14 AC 69 ms
9,492 KB
testcase_15 AC 68 ms
9,404 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 73 ms
9,444 KB
testcase_21 AC 69 ms
9,368 KB
testcase_22 AC 56 ms
9,512 KB
testcase_23 AC 57 ms
9,444 KB
testcase_24 AC 55 ms
9,412 KB
testcase_25 AC 83 ms
9,232 KB
testcase_26 AC 88 ms
9,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
using namespace std;

struct st{
  int h,w;
  int a;
  bool re;
};

long long dp[510][510][2];

int main(){
  int h,w;cin>>h>>w;
  vector<vector<long long>> A(h,vector<long long>(w));
  for(int i = 0; h > i; i++){
    for(int j = 0; w > j; j++){
      cin>>A[i][j];
      dp[i][j][0] = dp[i][j][1] = -1;
    }
  }
  dp[0][0][0] = A[0][0];
  for(int i = 0; h > i; i++){
    for(int j = 0; w > j; j++){
      if(i){
        if(A[i][j] >= dp[i-1][j][0]){
          if(A[i][j] < dp[i-1][j][1]){
            dp[i][j][1] = max(dp[i][j][1], dp[i-1][j][1]+A[i][j]);
          }
          if(!(i+1 == h && j+1 == w)){
            dp[i][j][1] = max(dp[i][j][1], dp[i-1][j][0]);
          }
        }else{
          if(dp[i-1][j][1] != -1)dp[i][j][1] = max(dp[i][j][1], dp[i-1][j][1]+A[i][j]);
          dp[i][j][0] = max(dp[i][j][0], dp[i-1][j][0]+A[i][j]);
        }
      }
      if(j){
        if(A[i][j] >= dp[i][j-1][0]){
          if(A[i][j] < dp[i][j-1][1]){
            dp[i][j][1] = max(dp[i][j][1], dp[i][j-1][1]+A[i][j]);
          }
          if(!(i+1 == h && j+1 == w)){
            dp[i][j][1] = max(dp[i][j][1], dp[i][j-1][0]);
          }
        }else{
          if(dp[i][j-1][1] != -1)dp[i][j][1] = max(dp[i][j][1], dp[i][j-1][1]+A[i][j]);
          dp[i][j][0] = max(dp[i][j][0], dp[i][j-1][0]+A[i][j]);
        }
      }
    }
  }
  cout << (dp[h-1][w-1][0] != -1 || dp[h-1][w-1][1] != -1 ? "Yes" : "No") << endl;
}
0