結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー hashi_pyhashi_py
提出日時 2022-05-21 01:23:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2024-09-20 10:57:00
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 106 ms
77,568 KB
testcase_08 AC 104 ms
78,592 KB
testcase_09 AC 115 ms
78,080 KB
testcase_10 AC 115 ms
78,336 KB
testcase_11 AC 128 ms
78,976 KB
testcase_12 AC 127 ms
83,328 KB
testcase_13 AC 139 ms
83,328 KB
testcase_14 AC 134 ms
83,456 KB
testcase_15 AC 117 ms
82,432 KB
testcase_16 AC 43 ms
53,888 KB
testcase_17 AC 50 ms
56,320 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 39 ms
52,480 KB
testcase_20 AC 127 ms
83,072 KB
testcase_21 AC 121 ms
82,432 KB
testcase_22 AC 100 ms
77,568 KB
testcase_23 AC 97 ms
77,824 KB
testcase_24 AC 106 ms
82,560 KB
testcase_25 AC 118 ms
80,256 KB
testcase_26 AC 131 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
G = [list(map(int,input().split()))+[0] for _ in range(h)]
G.append([0]*(w+1))
dpA = [[0]*(w+1) for _ in range(h+1)]
dpB = [[0]*(w+1) for _ in range(h+1)]
dpA[0][0]=G[0][0]
dpB[0][0]=G[0][0]

for i in range(h):
    for j in range(w):
        if(G[i+1][j]<dpA[i][j]):
            dpA[i+1][j]=max(dpA[i+1][j],dpA[i][j]+G[i+1][j])
        else:
            dpB[i+1][j]=max(dpB[i+1][j],dpA[i][j])

        if(G[i][j+1]<dpA[i][j]):
            dpA[i][j+1]=max(dpA[i][j+1],dpA[i][j]+G[i][j+1])
        else:
            dpB[i][j+1]=max(dpB[i][j+1],dpA[i][j])

        if(G[i+1][j]<dpB[i][j]):
            dpB[i+1][j]=max(dpB[i+1][j],dpB[i][j]+G[i+1][j])
        if(G[i][j+1]<dpB[i][j]):
            dpB[i][j+1]=max(dpB[i][j+1],dpB[i][j]+G[i][j+1])

if(dpA[-2][-2]>G[-2][-2] or dpB[-2][-2]>G[-2][-2]):
    print("Yes")
else:
    print("No")
0