結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー Akijin_007Akijin_007
提出日時 2022-05-20 23:25:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,154 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,988 KB
最終ジャッジ日時 2024-09-20 09:50:54
合計ジャッジ時間 4,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 141 ms
94,464 KB
testcase_08 AC 143 ms
99,968 KB
testcase_09 AC 161 ms
100,608 KB
testcase_10 AC 144 ms
100,224 KB
testcase_11 AC 166 ms
100,736 KB
testcase_12 AC 167 ms
100,608 KB
testcase_13 AC 165 ms
100,848 KB
testcase_14 AC 170 ms
100,592 KB
testcase_15 AC 150 ms
100,480 KB
testcase_16 AC 43 ms
53,888 KB
testcase_17 AC 50 ms
56,320 KB
testcase_18 AC 39 ms
52,736 KB
testcase_19 AC 40 ms
52,352 KB
testcase_20 AC 184 ms
100,988 KB
testcase_21 AC 172 ms
100,608 KB
testcase_22 AC 128 ms
91,904 KB
testcase_23 AC 127 ms
91,904 KB
testcase_24 AC 138 ms
92,544 KB
testcase_25 AC 164 ms
99,524 KB
testcase_26 AC 176 ms
100,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

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

A = [0] * H
for i in range(H):
    A[i] = list(map(int, input().split()))

dp = [[[0] * 2 for i in range(W)] for i in range(H)]

dp[1][0][0] = A[0][0]
dp[0][1][0] = A[0][0]

for i in range(H):
    for j in range(W):
        if dp[i][j][0] > A[i][j]:
            if i + 1 < H:
                dp[i+1][j][0] = max(dp[i+1][j][0], dp[i][j][0] + A[i][j])
            if j + 1 < W:
                dp[i][j+1][0] = max(dp[i][j+1][0], dp[i][j][0] + A[i][j])
        else:
            if i + 1 < H:
                dp[i+1][j][1] = max(dp[i+1][j][1], dp[i][j][0])
            if j + 1 < W:
                dp[i][j+1][1] = max(dp[i][j+1][1], dp[i][j][0])
        if dp[i][j][1] > A[i][j]:
            if i + 1 < H:
                dp[i+1][j][1] = max(dp[i+1][j][1], dp[i][j][1] + A[i][j])
            if j + 1 < W:
                dp[i][j+1][1] = max(dp[i][j+1][1], dp[i][j][1] + A[i][j])

f = 0

for i in range(2):
    if dp[H-1][W-1][i] > A[H-1][W-1]:
        f = 1

# for i in range(H):
#     print(dp[i])

if f:
    print("Yes")
else:
    print("No")

0