結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー tassei903tassei903
提出日時 2022-05-21 09:40:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-09-20 11:18:22
合計ジャッジ時間 4,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 159 ms
84,352 KB
testcase_08 AC 127 ms
82,304 KB
testcase_09 AC 149 ms
83,072 KB
testcase_10 AC 166 ms
95,104 KB
testcase_11 AC 194 ms
86,936 KB
testcase_12 AC 181 ms
87,580 KB
testcase_13 AC 213 ms
87,488 KB
testcase_14 AC 197 ms
86,248 KB
testcase_15 AC 172 ms
83,764 KB
testcase_16 AC 41 ms
54,528 KB
testcase_17 AC 47 ms
56,960 KB
testcase_18 AC 37 ms
53,504 KB
testcase_19 AC 38 ms
53,248 KB
testcase_20 AC 175 ms
83,924 KB
testcase_21 AC 189 ms
83,740 KB
testcase_22 AC 132 ms
85,248 KB
testcase_23 AC 124 ms
81,280 KB
testcase_24 AC 151 ms
85,888 KB
testcase_25 AC 177 ms
91,564 KB
testcase_26 AC 185 ms
90,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

h,w = na()
a = [na() for i in range(h)]
dp = [[-float("inf") for j in range(w)]for i in range(h)]
ndp = [[-float("inf") for j in range(w)]for i in range(h)]
dp[0][0] = a[0][0]
for i in range(h):
    for j in range(w):
        if i < h-1 and dp[i][j] > a[i+1][j]:
            dp[i+1][j] = max(dp[i+1][j], dp[i][j] + a[i+1][j])
        if i < h-1 and ndp[i][j] > a[i+1][j]:
            ndp[i+1][j] = max(ndp[i+1][j], ndp[i][j] + a[i+1][j])
        if i < h-1 and ((i+1,j)!=(h-1,w-1)):
            ndp[i+1][j] = max(ndp[i+1][j], dp[i][j])
        if j < w-1 and dp[i][j] > a[i][j+1]:
            dp[i][j+1] = max(dp[i][j+1], dp[i][j] + a[i][j+1])
        if j < w-1 and ndp[i][j] > a[i][j+1]:
            ndp[i][j+1] = max(ndp[i][j+1], ndp[i][j] + a[i][j+1])
        if j < w-1 and ((i,j+1)!=(h-1,w-1)):
            ndp[i][j+1] = max(ndp[i][j+1], dp[i][j])
    
if dp[-1][-1] > 0 or ndp[-1][-1] > 0:
    Yes()
else:
    No()
0