結果
問題 | No.2095 High Rise |
ユーザー | terasa |
提出日時 | 2022-10-07 22:23:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,062 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,452 KB |
実行使用メモリ | 91,740 KB |
最終ジャッジ日時 | 2024-06-12 19:15:34 |
合計ジャッジ時間 | 3,925 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
56,656 KB |
testcase_01 | AC | 44 ms
56,172 KB |
testcase_02 | AC | 45 ms
55,880 KB |
testcase_03 | AC | 45 ms
56,608 KB |
testcase_04 | AC | 45 ms
56,948 KB |
testcase_05 | AC | 46 ms
56,192 KB |
testcase_06 | AC | 45 ms
56,396 KB |
testcase_07 | AC | 46 ms
56,852 KB |
testcase_08 | AC | 46 ms
55,580 KB |
testcase_09 | AC | 45 ms
57,336 KB |
testcase_10 | AC | 46 ms
55,640 KB |
testcase_11 | AC | 46 ms
56,960 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
import sys # import pypyjit import itertools import heapq import math import bisect from collections import deque, defaultdict from functools import lru_cache, cmp_to_key # for AtCoder Easy test if __file__ == 'prog.py': pass else: sys.setrecursionlimit(10 ** 6) # pypyjit.set_param('max_unroll_recursion=-1') input = sys.stdin.readline def readints(): return map(int, input().split()) def readlist(): return list(readints()) def readstr(): return input()[:-1] N, M = readints() A = [readlist() for _ in range(N)] if N == 1: print(0) exit() INF = 1 << 50 B = [(INF, -1)] for i in range(N - 1): acc = INF idx = None for j in range(M): if A[i][j] + A[i + 1][j] < acc: acc = A[i][j] + A[i + 1][j] idx = j B.append((acc, idx)) dp = [[INF for _ in range(M)] for _ in range(N + 1)] dp[0] = [0] * M for i in range(N): mc, mi = B[i] for j in range(M): dp[i + 1][j] = min(dp[i + 1][j], dp[i][j] + A[i][j]) dp[i + 1][mi] = min(dp[i + 1][mi], dp[i][j] + mc) print(min(dp[N]))