結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-05-20 21:39:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 122,752 KB
最終ジャッジ日時 2024-09-20 07:35:22
合計ジャッジ時間 5,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 40 ms
53,632 KB
testcase_07 AC 196 ms
107,904 KB
testcase_08 AC 165 ms
100,976 KB
testcase_09 AC 220 ms
118,912 KB
testcase_10 AC 216 ms
116,352 KB
testcase_11 AC 198 ms
101,248 KB
testcase_12 AC 205 ms
103,808 KB
testcase_13 AC 210 ms
103,788 KB
testcase_14 AC 202 ms
103,900 KB
testcase_15 AC 183 ms
101,436 KB
testcase_16 AC 55 ms
65,024 KB
testcase_17 AC 56 ms
66,048 KB
testcase_18 AC 43 ms
55,040 KB
testcase_19 AC 42 ms
54,784 KB
testcase_20 AC 224 ms
113,704 KB
testcase_21 AC 227 ms
112,768 KB
testcase_22 AC 174 ms
100,920 KB
testcase_23 AC 165 ms
100,864 KB
testcase_24 AC 210 ms
115,584 KB
testcase_25 AC 242 ms
117,760 KB
testcase_26 AC 256 ms
122,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin
from collections import deque

H,W = map(int,stdin.readline().split())

A = [ list(map(int,stdin.readline().split())) for i in range(H) ]

dp = [[[float("-inf"),float("-inf")] for j in range(W)] for i in range(H)]

dp[0][0][0] = A[0][0]

for i in range(H):

    for j in range(W):

        for k in range(2):

            now = dp[i][j][k]
            if i != H-1:

                if A[i+1][j] < now:
                    dp[i+1][j][k] = max(dp[i+1][j][k] , now+A[i+1][j])
                if k == 0 and (i+1,j) != (H-1,W-1):
                    dp[i+1][j][1] = max(dp[i+1][j][1] , now)

            if j != W-1:

                if A[i][j+1] < now:
                    dp[i][j+1][k] = max(dp[i][j+1][k] , now+A[i][j+1])
                if k == 0 and (i,j+1) != (H-1,W-1):
                    dp[i][j+1][1] = max(dp[i][j+1][1] , now)

#print (dp)

if dp[-1][-1][0] != float("-inf") or dp[-1][-1][1] != float("-inf"):
    print ("Yes")
else:
    print ("No")
0