結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー titiatitia
提出日時 2022-05-20 21:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,152 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 82,992 KB
最終ジャッジ日時 2024-09-20 07:39:41
合計ジャッジ時間 3,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 91 ms
77,952 KB
testcase_08 AC 78 ms
76,928 KB
testcase_09 AC 100 ms
82,048 KB
testcase_10 AC 92 ms
82,048 KB
testcase_11 AC 105 ms
82,992 KB
testcase_12 AC 106 ms
82,688 KB
testcase_13 AC 119 ms
82,924 KB
testcase_14 AC 110 ms
82,304 KB
testcase_15 AC 87 ms
77,824 KB
testcase_16 AC 37 ms
52,736 KB
testcase_17 AC 39 ms
53,760 KB
testcase_18 AC 37 ms
52,096 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 114 ms
82,560 KB
testcase_21 AC 112 ms
82,304 KB
testcase_22 AC 76 ms
77,952 KB
testcase_23 AC 73 ms
77,696 KB
testcase_24 AC 93 ms
77,568 KB
testcase_25 AC 115 ms
82,408 KB
testcase_26 AC 117 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

DP=[[-1]*W for i in range(H)]
DP2=[[-1]*W for i in range(H)]


DP[0][0]=A[0][0]

for i in range(H):
    for j in range(W):
        if DP[i][j]==-1:
            continue
        if i+1<H:
            if A[i+1][j]<DP[i][j]:
                DP[i+1][j]=max(DP[i+1][j],DP[i][j]+A[i+1][j])
            else:
                DP2[i+1][j]=max(DP2[i+1][j],DP[i][j])
        if j+1<W:
            if A[i][j+1]<DP[i][j]:
                DP[i][j+1]=max(DP[i][j+1],DP[i][j]+A[i][j+1])
            else:
                DP2[i][j+1]=max(DP2[i][j+1],DP[i][j])

for i in range(H):
    for j in range(W):
        if DP2[i][j]==-1:
            continue
        if i+1<H:
            if A[i+1][j]<DP2[i][j]:
                DP2[i+1][j]=max(DP2[i+1][j],DP2[i][j]+A[i+1][j])
        if j+1<W:
            if A[i][j+1]<DP2[i][j]:
                DP2[i][j+1]=max(DP2[i][j+1],DP2[i][j]+A[i][j+1])
            
if DP[H-2][W-1]>A[-1][-1] or DP2[H-2][W-1]>A[-1][-1] or DP[H-1][W-2]>A[-1][-1] or DP2[H-1][W-2]>A[-1][-1]:
    print("Yes")
else:
    print("No")
0