結果

問題 No.2095 High Rise
ユーザー mkawa2mkawa2
提出日時 2022-10-07 22:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,005 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 85,616 KB
最終ジャッジ日時 2024-06-12 18:28:19
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,464 KB
testcase_01 AC 36 ms
52,528 KB
testcase_02 AC 35 ms
53,484 KB
testcase_03 AC 36 ms
53,380 KB
testcase_04 AC 36 ms
52,724 KB
testcase_05 AC 35 ms
53,208 KB
testcase_06 AC 36 ms
53,548 KB
testcase_07 AC 36 ms
52,600 KB
testcase_08 AC 36 ms
52,992 KB
testcase_09 AC 35 ms
53,248 KB
testcase_10 AC 36 ms
52,624 KB
testcase_11 AC 36 ms
53,352 KB
testcase_12 AC 44 ms
62,248 KB
testcase_13 AC 43 ms
61,208 KB
testcase_14 AC 45 ms
61,580 KB
testcase_15 AC 45 ms
63,316 KB
testcase_16 AC 43 ms
60,416 KB
testcase_17 AC 68 ms
76,564 KB
testcase_18 AC 64 ms
76,844 KB
testcase_19 AC 48 ms
65,296 KB
testcase_20 AC 65 ms
76,256 KB
testcase_21 AC 79 ms
77,688 KB
testcase_22 AC 164 ms
85,616 KB
testcase_23 AC 165 ms
85,480 KB
testcase_24 AC 168 ms
85,260 KB
testcase_25 AC 179 ms
85,448 KB
testcase_26 AC 169 ms
85,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

n, m = LI()
aa = LLI(n)

if n==1:
    print(0)
    exit()

dp = aa[0][:]
mn = 0
for i in range(1, n):
    ndp = [inf]*m
    nxt = inf
    for j in range(m):
        ndp[j] = min(dp[j], mn+aa[i-1][j])+aa[i][j]
        nxt = min(nxt, ndp[j])
    mn = nxt
    dp = ndp

print(min(dp))
0