結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー asaringoasaringo
提出日時 2022-05-20 23:04:50
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,346 bytes
コンパイル時間 3,304 ms
コンパイル使用メモリ 203,208 KB
実行使用メモリ 13,472 KB
最終ジャッジ日時 2023-10-20 13:58:05
合計ジャッジ時間 3,955 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,644 KB
testcase_01 AC 2 ms
5,640 KB
testcase_02 AC 3 ms
5,640 KB
testcase_03 AC 2 ms
5,652 KB
testcase_04 AC 2 ms
5,640 KB
testcase_05 AC 2 ms
5,640 KB
testcase_06 AC 2 ms
5,640 KB
testcase_07 AC 23 ms
13,472 KB
testcase_08 AC 35 ms
13,472 KB
testcase_09 AC 34 ms
13,472 KB
testcase_10 AC 35 ms
13,472 KB
testcase_11 AC 34 ms
13,456 KB
testcase_12 AC 28 ms
13,472 KB
testcase_13 AC 28 ms
13,472 KB
testcase_14 AC 28 ms
13,472 KB
testcase_15 AC 28 ms
13,472 KB
testcase_16 AC 2 ms
5,648 KB
testcase_17 AC 5 ms
12,712 KB
testcase_18 AC 2 ms
5,688 KB
testcase_19 AC 3 ms
5,676 KB
testcase_20 AC 28 ms
13,472 KB
testcase_21 AC 28 ms
13,440 KB
testcase_22 AC 25 ms
13,472 KB
testcase_23 AC 25 ms
13,472 KB
testcase_24 AC 25 ms
13,472 KB
testcase_25 AC 32 ms
13,284 KB
testcase_26 AC 33 ms
13,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std ;
#define fast_input_output ios::sync_with_stdio(false); cin.tie(nullptr);
typedef long long ll ;
typedef long double ld ;
typedef pair<ll,ll> P ;
typedef tuple<ll,ll,ll> TP ;
#define chmin(a,b) a = min(a,b)
#define chmax(a,b) a = max(a,b)
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define rrep(i,a,b) for(int i = a ; i < b ; i++)
#define endl "\n"

int H , W ;
ll dp[505][505][4] ;
ll A[505][505] ;

int main(){
    fast_input_output
    cin >> H >> W ;
    rep(i,H) rep(j,W) cin >> A[i][j] ;
    rep(i,H) rep(j,W) rep(k,2) dp[i][j][k] = -1 ;
    dp[0][0][0] = A[0][0] ;
    bool res = false ;
    rep(i,H) rep(j,W) rep(k,2){
        if(i == H-1 && j == W-1){
            if(dp[i-1][j][k] > A[H-1][W-1] || dp[i][j-1][k] > A[H-1][W-1]) res = true ;
            continue;
        }
        if(i-1>=0){
            if(A[i][j] < dp[i-1][j][k]) chmax(dp[i][j][k],A[i][j]+dp[i-1][j][k]) ;
            else chmax(dp[i][j][k+1],dp[i-1][j][k]) ;
        }
        if(j-1>=0){
            if(A[i][j] < dp[i][j-1][k]) chmax(dp[i][j][k],A[i][j]+dp[i][j-1][k]) ;
            else chmax(dp[i][j][k+1],dp[i][j-1][k]) ;
        }
    }
    if(res) cout << "Yes" << endl ;
    else cout << "No" << endl ;
}
0