結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー ikomaikoma
提出日時 2022-05-20 23:34:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,152 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 83,184 KB
最終ジャッジ日時 2024-09-20 10:00:37
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,048 KB
testcase_01 AC 38 ms
53,136 KB
testcase_02 AC 35 ms
53,208 KB
testcase_03 AC 37 ms
54,336 KB
testcase_04 AC 38 ms
53,752 KB
testcase_05 AC 40 ms
52,336 KB
testcase_06 AC 36 ms
54,400 KB
testcase_07 AC 105 ms
78,544 KB
testcase_08 AC 110 ms
82,528 KB
testcase_09 AC 119 ms
82,488 KB
testcase_10 AC 98 ms
82,376 KB
testcase_11 AC 121 ms
82,840 KB
testcase_12 AC 119 ms
82,860 KB
testcase_13 AC 124 ms
82,488 KB
testcase_14 AC 133 ms
83,184 KB
testcase_15 AC 118 ms
82,944 KB
testcase_16 AC 39 ms
55,188 KB
testcase_17 AC 42 ms
56,200 KB
testcase_18 AC 37 ms
54,556 KB
testcase_19 AC 37 ms
53,716 KB
testcase_20 AC 117 ms
82,316 KB
testcase_21 AC 116 ms
82,596 KB
testcase_22 AC 90 ms
77,836 KB
testcase_23 AC 102 ms
78,352 KB
testcase_24 AC 87 ms
77,948 KB
testcase_25 AC 105 ms
82,608 KB
testcase_26 AC 115 ms
82,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


H,W=map(int,input().split())
A=[list(map(int,input().split())) for _ in range(H)]
INF=float("inf")
dp = [[0]*W for _ in range(H)]
dp2 = [[0]*W for _ in range(H)]
dp[0][0]=A[0][0]
for h in range(H):
    for w in range(W):
        if h==0 and w==0: continue
        if h==0:
            dp[h][w]=dp[h][w-1]
        elif w==0:
            dp[h][w]=dp[h-1][w]
        else:
            dp[h][w]=max(dp[h-1][w],dp[h][w-1])
        if dp[h][w] > A[h][w]:
            dp[h][w]+=A[h][w]
        else:
            if h<H-1:
                dp2[h+1][w]=max(dp2[h+1][w], dp[h][w])
            if w<W-1:
                dp2[h][w+1]=max(dp2[h][w+1], dp[h][w])
            dp[h][w]=0
for h in range(H):
    for w in range(W):
        if h==0 and w==0: continue
        if h==0:
            dp2[h][w]=max(dp2[h][w],dp2[h][w-1])
        elif w==0:
            dp2[h][w]=max(dp2[h][w],dp2[h-1][w])
        else:
            dp2[h][w]=max(dp2[h][w],dp2[h-1][w],dp2[h][w-1])
        if dp2[h][w] > A[h][w]:
            dp2[h][w]+=A[h][w]
        else:
            dp2[h][w]=0
print("Yes" if dp[-1][-1]>0 or dp2[-1][-1]>0 else "No")
0