結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー mkawa2mkawa2
提出日時 2022-05-20 22:05:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,540 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 83,464 KB
最終ジャッジ日時 2024-09-20 08:15:33
合計ジャッジ時間 3,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,716 KB
testcase_01 AC 37 ms
53,604 KB
testcase_02 AC 35 ms
53,184 KB
testcase_03 AC 37 ms
53,076 KB
testcase_04 AC 37 ms
52,980 KB
testcase_05 AC 36 ms
53,012 KB
testcase_06 AC 37 ms
52,832 KB
testcase_07 AC 97 ms
78,368 KB
testcase_08 AC 93 ms
82,560 KB
testcase_09 AC 107 ms
82,264 KB
testcase_10 AC 111 ms
82,856 KB
testcase_11 AC 124 ms
83,160 KB
testcase_12 AC 123 ms
83,464 KB
testcase_13 AC 126 ms
83,392 KB
testcase_14 AC 124 ms
83,024 KB
testcase_15 AC 106 ms
82,384 KB
testcase_16 AC 40 ms
54,676 KB
testcase_17 AC 41 ms
55,116 KB
testcase_18 AC 37 ms
54,044 KB
testcase_19 AC 37 ms
52,824 KB
testcase_20 AC 136 ms
83,076 KB
testcase_21 AC 150 ms
83,048 KB
testcase_22 AC 89 ms
78,284 KB
testcase_23 AC 87 ms
77,952 KB
testcase_24 AC 113 ms
82,764 KB
testcase_25 AC 129 ms
82,952 KB
testcase_26 AC 136 ms
83,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

h, w = LI()
aa = LLI(h)

dp0 = [[-1]*w for _ in range(h)]
dp1 = [[-1]*w for _ in range(h)]
dp0[0][0] = aa[0][0]

for i in range(h):
    for j in range(w):
        if i-1 >= 0 and dp0[i-1][j] > aa[i][j]: dp0[i][j] = dp0[i-1][j]+aa[i][j]
        if j-1 >= 0 and dp0[i][j-1] > aa[i][j]: dp0[i][j] = max(dp0[i][j], dp0[i][j-1]+aa[i][j])
for i in range(h):
    for j in range(w):
        if (i, j) != (h-1, w-1):
            if i-1 >= 0: dp1[i][j] = max(dp1[i][j], dp0[i-1][j])
            if j-1 >= 0: dp1[i][j] = max(dp1[i][j], dp0[i][j-1])
        if i-1 >= 0 and dp1[i-1][j] > aa[i][j]: dp1[i][j] = max(dp1[i][j], dp1[i-1][j]+aa[i][j])
        if j-1 >= 0 and dp1[i][j-1] > aa[i][j]: dp1[i][j] = max(dp1[i][j], dp1[i][j-1]+aa[i][j])
# p2D(dp0)
# p2D(dp1)

print("Yes" if dp0[-1][-1] > 0 or dp1[-1][-1] > 0 else "No")
0