結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー lilictakalilictaka
提出日時 2022-05-20 23:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,808 KB
最終ジャッジ日時 2024-09-20 09:36:50
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,464 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 123 ms
82,656 KB
testcase_08 AC 113 ms
82,304 KB
testcase_09 AC 136 ms
84,816 KB
testcase_10 AC 141 ms
88,448 KB
testcase_11 AC 142 ms
86,556 KB
testcase_12 AC 137 ms
84,736 KB
testcase_13 AC 147 ms
84,864 KB
testcase_14 AC 148 ms
84,736 KB
testcase_15 AC 133 ms
83,968 KB
testcase_16 AC 52 ms
61,696 KB
testcase_17 AC 60 ms
63,360 KB
testcase_18 AC 44 ms
52,992 KB
testcase_19 AC 39 ms
52,480 KB
testcase_20 AC 166 ms
84,736 KB
testcase_21 AC 154 ms
84,864 KB
testcase_22 AC 116 ms
85,200 KB
testcase_23 AC 102 ms
82,176 KB
testcase_24 AC 143 ms
84,992 KB
testcase_25 AC 169 ms
92,808 KB
testcase_26 AC 173 ms
91,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
A = []
for _ in range(H):
    tmp = list(map(int,input().split()))
    A.append(tmp)
def check(h,w):
    if 0 <= h < H and 0 <= w < W:
        return True
    else:
        return False
INF = float('inf')
dp0 = [[-INF] * W for _ in range(H)]
dp1 = [[-INF] * W for _ in range(H)]
dp0[0][0] = A[0][0]
for h in range(H):
    for w in range(W):
        for dh,dw in [(1,0),(0,1)]:
            nh = h + dh
            nw = w + dw
            if dp0[h][w] != -INF:
                if check(nh,nw) and A[nh][nw] < dp0[h][w]:
                    dp0[nh][nw] = max(dp0[h][w] + A[nh][nw] ,dp0[nh][nw])
                elif check(nh,nw) and A[nh][nw] >= dp0[h][w] and not (nh == H-1 and nw == W-1):
                    dp1[nh][nw] = max(dp0[h][w],dp1[nh][nw])
            if dp1[h][w] != -INF:
                if check(nh,nw) and A[nh][nw] < dp1[h][w]:
                    dp1[nh][nw] = max(dp1[h][w] + A[nh][nw],dp1[nh][nw])
if dp0[H-1][W-1] != -INF or dp1[H-1][W-1] != -INF:
    print('Yes')
else:
    print('No')
0