結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー rlangevinrlangevin
提出日時 2023-01-10 23:34:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,153 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 83,084 KB
最終ジャッジ日時 2024-06-01 08:08:13
合計ジャッジ時間 4,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,476 KB
testcase_01 AC 43 ms
53,912 KB
testcase_02 AC 38 ms
53,016 KB
testcase_03 AC 37 ms
53,100 KB
testcase_04 AC 39 ms
52,604 KB
testcase_05 AC 37 ms
52,624 KB
testcase_06 AC 38 ms
52,648 KB
testcase_07 AC 113 ms
78,276 KB
testcase_08 AC 106 ms
80,724 KB
testcase_09 AC 120 ms
80,988 KB
testcase_10 AC 105 ms
80,548 KB
testcase_11 AC 125 ms
81,996 KB
testcase_12 AC 125 ms
83,084 KB
testcase_13 AC 147 ms
83,020 KB
testcase_14 AC 133 ms
82,884 KB
testcase_15 AC 114 ms
82,972 KB
testcase_16 AC 42 ms
54,592 KB
testcase_17 AC 48 ms
56,780 KB
testcase_18 AC 40 ms
54,132 KB
testcase_19 AC 39 ms
53,428 KB
testcase_20 AC 138 ms
82,596 KB
testcase_21 AC 124 ms
82,532 KB
testcase_22 AC 106 ms
77,996 KB
testcase_23 AC 99 ms
77,592 KB
testcase_24 AC 100 ms
77,724 KB
testcase_25 AC 120 ms
82,532 KB
testcase_26 AC 131 ms
82,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = []
for i in range(H):
    A.append(list(map(int, input().split())))
    
inf = 10 ** 18
dp0 = [[-inf] * W for i in range(H)]
dp1 = [[-inf] * W for i in range(H)]
dp0[0][0] = A[0][0]
for i in range(H):
    for j in range(W):
        if i != H - 1:
            if A[i + 1][j] < dp0[i][j]:
                dp0[i + 1][j] = max(dp0[i + 1][j],  dp0[i][j] + A[i + 1][j])
            else:
                if (i + 1, j) != (H - 1, W - 1):
                    dp1[i + 1][j] = max(dp1[i + 1][j], dp0[i][j])
            if A[i + 1][j] < dp1[i][j]:
                dp1[i + 1][j] = max(dp1[i + 1][j], dp1[i][j] + A[i + 1][j])
        if j != W - 1:
            if A[i][j + 1] < dp0[i][j]:
                dp0[i][j + 1] = max(dp0[i][j + 1], dp0[i][j] + A[i][j + 1])
            else:
                if (i, j + 1) != (H - 1, W - 1):
                    dp1[i][j + 1] = max(dp1[i][j + 1], dp0[i][j])
            if A[i][j + 1] < dp1[i][j]:
                dp1[i][j + 1] = max(dp1[i][j + 1], dp1[i][j] + A[i][j + 1])
ans = max(dp0[-1][-1], dp1[-1][-1])
print("Yes") if ans > 0 else print("No")
# print(dp0)
# print(dp1)
            
0