結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー KudeKude
提出日時 2022-05-20 22:23:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 1,118 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 101,728 KB
最終ジャッジ日時 2024-09-20 08:38:00
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,308 KB
testcase_01 AC 33 ms
54,240 KB
testcase_02 AC 34 ms
53,352 KB
testcase_03 AC 34 ms
53,164 KB
testcase_04 AC 35 ms
52,668 KB
testcase_05 AC 33 ms
52,968 KB
testcase_06 AC 35 ms
52,880 KB
testcase_07 AC 124 ms
93,504 KB
testcase_08 AC 121 ms
99,808 KB
testcase_09 AC 135 ms
100,052 KB
testcase_10 AC 136 ms
100,052 KB
testcase_11 AC 144 ms
100,820 KB
testcase_12 AC 138 ms
100,500 KB
testcase_13 AC 155 ms
101,080 KB
testcase_14 AC 145 ms
101,344 KB
testcase_15 AC 129 ms
100,252 KB
testcase_16 AC 37 ms
53,644 KB
testcase_17 AC 42 ms
56,260 KB
testcase_18 AC 36 ms
53,856 KB
testcase_19 AC 35 ms
53,216 KB
testcase_20 AC 172 ms
100,524 KB
testcase_21 AC 152 ms
100,484 KB
testcase_22 AC 102 ms
91,860 KB
testcase_23 AC 104 ms
91,688 KB
testcase_24 AC 128 ms
92,760 KB
testcase_25 AC 153 ms
99,460 KB
testcase_26 AC 162 ms
101,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h)]
INF = 10 ** 9
dp = [[[-INF] * 2 for _ in range(w)] for _ in range(h)]
dp[0][0][0] = a[0][0]
for i in range(h):
    for j in range(w):
        if i + 1 < h:
            if dp[i][j][0] != -INF:
                if dp[i][j][0] > a[i+1][j]:
                    dp[i+1][j][0] = max(dp[i+1][j][0], dp[i][j][0] + a[i+1][j])
                elif i + 1 != h - 1 or j != w - 1:
                    dp[i+1][j][1] = max(dp[i+1][j][1], dp[i][j][0])
            if dp[i][j][1] > a[i+1][j]:
                dp[i+1][j][1] = max(dp[i+1][j][1], dp[i][j][1] + a[i+1][j])
        if j + 1 < w:
            if dp[i][j][0] != -INF:
                if dp[i][j][0] > a[i][j+1]:
                    dp[i][j+1][0] = max(dp[i][j+1][0], dp[i][j][0] + a[i][j+1])
                elif i != h - 1 or j + 1 != w - 1:
                    dp[i][j+1][1] = max(dp[i][j+1][1], dp[i][j][0])
            if dp[i][j][1] > a[i][j+1]:
                dp[i][j+1][1] = max(dp[i][j+1][1], dp[i][j][1] + a[i][j+1])
ans = max(dp[h-1][w-1])
print('Yes' if ans != -INF else 'No')
0