結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー kept1994kept1994
提出日時 2022-10-30 17:26:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 1,595 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,736 KB
最終ジャッジ日時 2024-07-07 08:50:37
合計ジャッジ時間 4,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,480 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 30 ms
51,968 KB
testcase_03 AC 33 ms
52,480 KB
testcase_04 AC 32 ms
52,224 KB
testcase_05 AC 31 ms
52,480 KB
testcase_06 AC 30 ms
52,352 KB
testcase_07 AC 141 ms
100,224 KB
testcase_08 AC 136 ms
100,096 KB
testcase_09 AC 146 ms
99,840 KB
testcase_10 AC 125 ms
100,076 KB
testcase_11 AC 142 ms
100,352 KB
testcase_12 AC 151 ms
100,736 KB
testcase_13 AC 159 ms
100,588 KB
testcase_14 AC 155 ms
100,224 KB
testcase_15 AC 133 ms
100,224 KB
testcase_16 AC 42 ms
61,440 KB
testcase_17 AC 46 ms
64,640 KB
testcase_18 AC 34 ms
52,480 KB
testcase_19 AC 32 ms
52,468 KB
testcase_20 AC 148 ms
100,224 KB
testcase_21 AC 150 ms
100,096 KB
testcase_22 AC 121 ms
100,352 KB
testcase_23 AC 122 ms
100,096 KB
testcase_24 AC 127 ms
99,840 KB
testcase_25 AC 139 ms
99,072 KB
testcase_26 AC 146 ms
100,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    H, W = map(int, input().split())
    G = []
    dp = [[[0] * 2 for _ in range(W) ] for _ in range(H)]
    for _ in range(H):
        G.append(list(map(int, input().split())))
    dp[0][0][0] = G[0][0]

    for hh in range(H):
        for ww in range(W):
            for i in range(2):
                # 横
                if ww + 1 < W:
                    # 勝利
                    if G[hh][ww + 1] < dp[hh][ww][i]:
                        dp[hh][ww + 1][i] = max(dp[hh][ww + 1][i], dp[hh][ww][i] + G[hh][ww + 1])
                    else:
                        # continue
                        if i == 0 and not (hh == H - 1 and ww + 1 == W - 1):
                            dp[hh][ww + 1][1] = max(dp[hh][ww + 1][1], dp[hh][ww][0])
                        # 敗北
                        else:
                            pass 
                # 縦
                if hh + 1 < H:
                    # 勝利
                    if G[hh + 1][ww] < dp[hh][ww][i]:
                        dp[hh + 1][ww][i] = max(dp[hh + 1][ww][i], dp[hh][ww][i] + G[hh + 1][ww])
                    else:
                        # continue
                        if i == 0 and not (hh + 1 == H - 1 and ww == W - 1):
                            dp[hh + 1][ww][1] = max(dp[hh + 1][ww][1], dp[hh][ww][0])
                        # 敗北
                        else:
                            pass 
    if dp[-1][-1][0] > 0 or  dp[-1][-1][1] > 0:
        print("Yes")
    else:
        print("No")
    return


if __name__ == '__main__':
    main()
0