結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー H20H20
提出日時 2022-04-02 20:22:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,736 KB
最終ジャッジ日時 2024-06-26 20:41:17
合計ジャッジ時間 5,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 167 ms
94,336 KB
testcase_08 AC 151 ms
100,604 KB
testcase_09 AC 176 ms
101,616 KB
testcase_10 AC 152 ms
100,352 KB
testcase_11 AC 178 ms
101,248 KB
testcase_12 AC 179 ms
101,496 KB
testcase_13 AC 207 ms
101,736 KB
testcase_14 AC 195 ms
101,724 KB
testcase_15 AC 164 ms
101,012 KB
testcase_16 AC 41 ms
53,632 KB
testcase_17 AC 47 ms
56,704 KB
testcase_18 AC 37 ms
52,864 KB
testcase_19 AC 36 ms
52,992 KB
testcase_20 AC 190 ms
101,548 KB
testcase_21 AC 186 ms
100,524 KB
testcase_22 AC 130 ms
92,924 KB
testcase_23 AC 135 ms
92,808 KB
testcase_24 AC 142 ms
92,800 KB
testcase_25 AC 173 ms
100,844 KB
testcase_26 AC 191 ms
101,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
DP = [[[0]*2 for _ in range(W)]for _ in range(H)]
DP[0][0][0]=A[0][0]
for h in range(H):
    for w in range(W):
        if h+1<H and DP[h][w][0]>A[h+1][w]:
            DP[h+1][w][0]=max(DP[h+1][w][0],DP[h][w][0]+A[h+1][w])
        if w+1<W and DP[h][w][0]>A[h][w+1]:
            DP[h][w+1][0]=max(DP[h][w+1][0],DP[h][w][0]+A[h][w+1])
        if h+1<H and DP[h][w][1]>A[h+1][w]:
            DP[h+1][w][1]=max(DP[h+1][w][1],DP[h][w][1]+A[h+1][w])
        if w+1<W and DP[h][w][1]>A[h][w+1]:
            DP[h][w+1][1]=max(DP[h][w+1][1],DP[h][w][1]+A[h][w+1])
        if h+1<H and DP[h][w][0]<=A[h+1][w]:
            DP[h+1][w][1]=max(DP[h+1][w][1],DP[h][w][0])
        if w+1<W and DP[h][w][0]<=A[h][w+1]:
            DP[h][w+1][1]=max(DP[h][w+1][1],DP[h][w][0])
if max(DP[H-1][W-1])>A[H-1][W-1]:
    print('Yes')
else:
    print('No')
0