結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー hir355hir355
提出日時 2022-05-20 22:09:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,608 KB
最終ジャッジ日時 2024-09-20 08:20:11
合計ジャッジ時間 3,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 97 ms
77,824 KB
testcase_08 AC 94 ms
80,256 KB
testcase_09 AC 107 ms
80,384 KB
testcase_10 AC 102 ms
80,512 KB
testcase_11 AC 107 ms
80,896 KB
testcase_12 AC 101 ms
82,608 KB
testcase_13 AC 112 ms
82,560 KB
testcase_14 AC 115 ms
82,560 KB
testcase_15 AC 102 ms
82,304 KB
testcase_16 AC 40 ms
53,632 KB
testcase_17 AC 45 ms
55,680 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 119 ms
82,600 KB
testcase_21 AC 115 ms
82,048 KB
testcase_22 AC 90 ms
78,048 KB
testcase_23 AC 92 ms
77,704 KB
testcase_24 AC 95 ms
77,696 KB
testcase_25 AC 122 ms
82,432 KB
testcase_26 AC 120 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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