結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー abababab
提出日時 2022-05-21 00:07:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,003 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 104,636 KB
最終ジャッジ日時 2024-09-20 10:30:48
合計ジャッジ時間 4,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 180 ms
103,808 KB
testcase_08 AC 167 ms
103,936 KB
testcase_09 AC 186 ms
103,936 KB
testcase_10 AC 187 ms
104,220 KB
testcase_11 AC 183 ms
104,064 KB
testcase_12 WA -
testcase_13 AC 183 ms
103,936 KB
testcase_14 AC 179 ms
104,040 KB
testcase_15 AC 174 ms
103,808 KB
testcase_16 AC 54 ms
62,336 KB
testcase_17 AC 64 ms
66,688 KB
testcase_18 AC 39 ms
52,736 KB
testcase_19 AC 40 ms
52,736 KB
testcase_20 AC 181 ms
104,028 KB
testcase_21 AC 196 ms
103,936 KB
testcase_22 AC 173 ms
104,636 KB
testcase_23 AC 166 ms
103,936 KB
testcase_24 AC 170 ms
104,064 KB
testcase_25 AC 180 ms
102,912 KB
testcase_26 AC 184 ms
104,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
A = [tuple(map(int, input().split())) for _ in range(h)]

DXY = [(0, 1), (1, 0)]

dp = [[[0] * 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):
        a = dp[i][j][0]
        for di, dj in DXY:
            ni, nj = i + di, j + dj
            if not (0 <= ni < h and 0 <= nj < w):
                continue
            enemy = A[ni][nj]
            if a > enemy:
                dp[ni][nj][0] = max(dp[ni][nj][0], a + enemy)
            else:
                if dp[ni][nj][1]:
                    continue
                dp[ni][nj][1] = max(dp[ni][nj][0], a)

        a = dp[i][j][1]
        for di, dj in DXY:
            ni, nj = i + di, j + dj
            if not (0 <= ni < h and 0 <= nj < w):
                continue
            enemy = A[ni][nj]
            if a > enemy:
                dp[ni][nj][1] = max(dp[ni][nj][1], a + enemy)

ans = max(dp[-1][-1])
print('Yes' if ans not in (0, A[-1][-1]) else 'No')
0