結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー chineristACchineristAC
提出日時 2022-05-20 21:48:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,147 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-09-20 07:48:43
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,680 KB
testcase_01 AC 45 ms
55,936 KB
testcase_02 AC 46 ms
55,680 KB
testcase_03 AC 42 ms
55,808 KB
testcase_04 AC 43 ms
55,808 KB
testcase_05 AC 44 ms
56,064 KB
testcase_06 AC 44 ms
56,064 KB
testcase_07 AC 114 ms
83,712 KB
testcase_08 AC 102 ms
80,000 KB
testcase_09 AC 117 ms
80,640 KB
testcase_10 AC 102 ms
79,936 KB
testcase_11 AC 124 ms
81,024 KB
testcase_12 AC 123 ms
84,416 KB
testcase_13 AC 138 ms
84,480 KB
testcase_14 AC 134 ms
84,480 KB
testcase_15 AC 112 ms
83,840 KB
testcase_16 AC 48 ms
57,472 KB
testcase_17 AC 48 ms
59,008 KB
testcase_18 AC 42 ms
56,704 KB
testcase_19 AC 43 ms
56,320 KB
testcase_20 AC 133 ms
84,080 KB
testcase_21 AC 120 ms
84,056 KB
testcase_22 AC 98 ms
83,200 KB
testcase_23 AC 95 ms
79,084 KB
testcase_24 AC 99 ms
78,828 KB
testcase_25 AC 116 ms
83,840 KB
testcase_26 AC 123 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
import heapq
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

INF = 10**17

H,W = mi()
A = [li() for i in range(H)]

dp0 = [[-INF]*W for i in range(H)]
dp1 = [[-INF]*W for i in range(H)]
dp1[0][0] = A[0][0]

for i in range(H):
    for j in range(W):
        if i!=H-1:
            if dp0[i][j] > A[i+1][j]:
                dp0[i+1][j] = max(dp0[i+1][j],dp0[i][j]+A[i+1][j])
            if dp1[i][j] > A[i+1][j]:
                dp1[i+1][j] = max(dp1[i+1][j],dp1[i][j]+A[i+1][j])
            elif (i+1,j)!=(H-1,W-1):
                dp0[i+1][j] = max(dp0[i+1][j],dp1[i][j])
        if j!=W-1:
            if dp0[i][j] > A[i][j+1]:
                dp0[i][j+1] = max(dp0[i][j+1],dp0[i][j]+A[i][j+1])
            if dp1[i][j] > A[i][j+1]:
                dp1[i][j+1] = max(dp1[i][j+1],dp1[i][j]+A[i][j+1])
            elif (i,j+1)!=(H-1,W-1):
                dp0[i][j+1] = max(dp0[i][j+1],dp1[i][j])


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