結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー siganaisiganai
提出日時 2022-05-20 22:55:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,254 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 85,064 KB
最終ジャッジ日時 2024-09-20 09:18:48
合計ジャッジ時間 3,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
64,608 KB
testcase_01 AC 57 ms
63,992 KB
testcase_02 AC 58 ms
64,536 KB
testcase_03 AC 52 ms
64,200 KB
testcase_04 AC 54 ms
64,124 KB
testcase_05 AC 54 ms
64,720 KB
testcase_06 AC 54 ms
65,656 KB
testcase_07 AC 112 ms
84,336 KB
testcase_08 AC 102 ms
80,344 KB
testcase_09 AC 112 ms
80,220 KB
testcase_10 AC 105 ms
80,596 KB
testcase_11 AC 118 ms
81,172 KB
testcase_12 AC 116 ms
84,080 KB
testcase_13 AC 136 ms
85,064 KB
testcase_14 AC 139 ms
84,768 KB
testcase_15 AC 114 ms
83,972 KB
testcase_16 AC 56 ms
65,112 KB
testcase_17 AC 56 ms
66,776 KB
testcase_18 AC 54 ms
65,068 KB
testcase_19 AC 55 ms
64,784 KB
testcase_20 AC 139 ms
84,872 KB
testcase_21 AC 141 ms
84,912 KB
testcase_22 AC 95 ms
79,496 KB
testcase_23 AC 99 ms
79,520 KB
testcase_24 AC 105 ms
79,332 KB
testcase_25 AC 121 ms
84,304 KB
testcase_26 AC 134 ms
82,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline
h,w=map(int,input().split())
a=[list(map(int,input().split())) for _ in range(h)]
dp = [[[-1] * w for _ in range(h)] for _ in range(2)]
dp[0][0][0] = a[0][0]
for i in range(h):
    for j in range(w):
        if i == 0 and j == 0:
            continue
        if i != 0:
            if dp[0][i-1][j] > a[i][j]:
                dp[0][i][j] = dp[0][i-1][j] + a[i][j]
            elif dp[0][i-1][j] != -1:
                dp[1][i][j] = dp[0][i-1][j]
            if dp[1][i-1][j] > a[i][j]:
                dp[1][i][j] = max(dp[1][i-1][j] + a[i][j],dp[1][i][j])
        if j != 0:
            if dp[0][i][j-1] > a[i][j]:
                dp[0][i][j] = max(dp[0][i][j-1] + a[i][j],dp[0][i][j])
            elif dp[0][i][j-1] != -1:
                dp[1][i][j] = max(dp[0][i][j-1],dp[1][i][j])
            if dp[1][i][j-1] > a[i][j]:
                dp[1][i][j] = max(dp[1][i][j-1] + a[i][j],dp[1][i][j])
if dp[0][-1][-1] > a[-1][-1] or dp[1][-1][-1] > a[-1][-1]:
    print('Yes')
else:
    print('No')
0