結果
問題 | No.2095 High Rise |
ユーザー | terasa |
提出日時 | 2022-10-07 22:24:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,067 bytes |
コンパイル時間 | 319 ms |
コンパイル使用メモリ | 82,072 KB |
実行使用メモリ | 105,316 KB |
最終ジャッジ日時 | 2024-06-12 19:20:11 |
合計ジャッジ時間 | 3,843 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
56,148 KB |
testcase_01 | AC | 38 ms
55,960 KB |
testcase_02 | AC | 38 ms
56,280 KB |
testcase_03 | AC | 38 ms
56,396 KB |
testcase_04 | AC | 37 ms
56,496 KB |
testcase_05 | AC | 37 ms
56,884 KB |
testcase_06 | AC | 38 ms
56,576 KB |
testcase_07 | AC | 38 ms
56,464 KB |
testcase_08 | AC | 39 ms
57,616 KB |
testcase_09 | AC | 38 ms
57,488 KB |
testcase_10 | AC | 39 ms
56,944 KB |
testcase_11 | AC | 38 ms
57,552 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 = float('inf') 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]))