結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 173 ms
103,808 KB
testcase_08 AC 172 ms
104,192 KB
testcase_09 AC 183 ms
103,680 KB
testcase_10 AC 189 ms
104,192 KB
testcase_11 AC 176 ms
104,192 KB
testcase_12 AC 173 ms
104,064 KB
testcase_13 AC 172 ms
103,936 KB
testcase_14 AC 173 ms
104,576 KB
testcase_15 AC 168 ms
104,192 KB
testcase_16 AC 51 ms
61,824 KB
testcase_17 AC 64 ms
66,688 KB
testcase_18 AC 39 ms
52,992 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 174 ms
104,064 KB
testcase_21 AC 185 ms
104,120 KB
testcase_22 AC 163 ms
104,064 KB
testcase_23 AC 164 ms
104,148 KB
testcase_24 AC 167 ms
104,148 KB
testcase_25 AC 176 ms
103,040 KB
testcase_26 AC 184 ms
104,320 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)

if dp[-1][-1][0]:
    print('Yes')
else:
    ans = dp[-1][-1][1]
    print('Yes' if ans and ans > A[-1][-1] else 'No')
0