結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 162 ms
106,908 KB
testcase_08 AC 131 ms
98,688 KB
testcase_09 AC 149 ms
99,200 KB
testcase_10 AC 137 ms
98,688 KB
testcase_11 AC 160 ms
99,968 KB
testcase_12 AC 180 ms
101,760 KB
testcase_13 AC 193 ms
103,040 KB
testcase_14 AC 193 ms
102,656 KB
testcase_15 AC 164 ms
101,120 KB
testcase_16 AC 45 ms
58,880 KB
testcase_17 AC 54 ms
62,208 KB
testcase_18 AC 38 ms
52,864 KB
testcase_19 AC 38 ms
52,352 KB
testcase_20 AC 207 ms
113,152 KB
testcase_21 AC 213 ms
112,768 KB
testcase_22 AC 127 ms
88,704 KB
testcase_23 AC 156 ms
100,864 KB
testcase_24 AC 166 ms
108,544 KB
testcase_25 AC 153 ms
102,912 KB
testcase_26 AC 158 ms
101,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())

A=["*"]
for _ in range(H):
    A.append(["*"]+list(map(int,input().split())))

inf=float("inf"); huge=2*10**9
DP=[[[-inf,-inf] for _ in range(W+1)] for _ in range(H+1)]

for i in range(1,H+1):
    for j in range(1,W+1):
        if i==j==1:
            DP[i][j]=[A[1][1],-inf]
            continue

        if max(DP[i-1][j][0],DP[i][j-1][0])>A[i][j]:
            DP[i][j][0]=max(DP[i-1][j][0],DP[i][j-1][0])+A[i][j]
        else:
            DP[i][j][1]=max(DP[i-1][j][0],DP[i][j-1][0])

        if max(DP[i-1][j][1],DP[i][j-1][1])>A[i][j]:
            DP[i][j][1]=max(DP[i][j][1], max(DP[i-1][j][1],DP[i][j-1][1])+A[i][j])

        if DP[i][j][0]>huge:
            DP[i][j][0]=inf

        if DP[i][j][1]>huge:
            DP[i][j][1]=inf

if max(DP[H-1][W][0], DP[H-1][W][1], DP[H][W-1][0], DP[H][W-1][1])>A[H][W]:
    print("Yes")
else:
    print("No")
0