結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー terasaterasa
提出日時 2022-05-22 11:48:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,283 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 85,892 KB
最終ジャッジ日時 2024-09-20 12:28:03
合計ジャッジ時間 4,534 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
66,432 KB
testcase_01 AC 66 ms
66,176 KB
testcase_02 AC 62 ms
66,176 KB
testcase_03 AC 61 ms
65,920 KB
testcase_04 AC 63 ms
66,176 KB
testcase_05 AC 62 ms
65,920 KB
testcase_06 AC 61 ms
65,920 KB
testcase_07 AC 137 ms
84,992 KB
testcase_08 AC 122 ms
80,692 KB
testcase_09 AC 142 ms
81,208 KB
testcase_10 AC 123 ms
80,932 KB
testcase_11 AC 141 ms
81,380 KB
testcase_12 AC 144 ms
85,456 KB
testcase_13 AC 166 ms
85,892 KB
testcase_14 AC 165 ms
85,760 KB
testcase_15 AC 137 ms
85,516 KB
testcase_16 AC 65 ms
68,096 KB
testcase_17 AC 73 ms
70,016 KB
testcase_18 AC 66 ms
66,560 KB
testcase_19 AC 63 ms
66,176 KB
testcase_20 AC 160 ms
85,376 KB
testcase_21 AC 159 ms
85,888 KB
testcase_22 AC 123 ms
84,736 KB
testcase_23 AC 121 ms
84,780 KB
testcase_24 AC 126 ms
84,992 KB
testcase_25 AC 138 ms
82,912 KB
testcase_26 AC 144 ms
81,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict, Counter
import string
import random

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]

dp = [[[0 for _ in range(W)] for _ in range(H)] for _ in range(2)]
dp[1][0][0] = A[0][0]
for i in range(H):
    for j in range(W):
        if i > 0:
            if dp[1][i - 1][j] > A[i][j]:
                dp[1][i][j] = max(dp[1][i][j], dp[1][i - 1][j] + A[i][j])
            elif not (i == H - 1 and j == W - 1):
                dp[0][i][j] = max(dp[0][i][j], dp[1][i - 1][j])

            if dp[0][i - 1][j] > A[i][j]:
                dp[0][i][j] = max(dp[0][i][j], dp[0][i - 1][j] + A[i][j])

        if j > 0:
            if dp[1][i][j - 1] > A[i][j]:
                dp[1][i][j] = max(dp[1][i][j], dp[1][i][j - 1] + A[i][j])
            elif not (i == H - 1 and j == W - 1):
                dp[0][i][j] = max(dp[0][i][j], dp[1][i][j - 1])

            if dp[0][i][j - 1] > A[i][j]:
                dp[0][i][j] = max(dp[0][i][j], dp[0][i][j - 1] + A[i][j])
print('Yes' if dp[1][H - 1][W - 1] > 0 or dp[0][H - 1][W - 1] > 0 else 'No')
0