結果
問題 | No.1247 ブロック登り |
ユーザー | mkawa2 |
提出日時 | 2021-08-18 18:48:45 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,373 bytes |
コンパイル時間 | 516 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 550,028 KB |
最終ジャッジ日時 | 2024-10-11 19:04:55 |
合計ジャッジ時間 | 6,940 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,600 KB |
testcase_01 | AC | 41 ms
51,840 KB |
testcase_02 | AC | 44 ms
57,472 KB |
testcase_03 | AC | 42 ms
52,480 KB |
testcase_04 | AC | 58 ms
63,232 KB |
testcase_05 | AC | 54 ms
61,312 KB |
testcase_06 | AC | 41 ms
51,840 KB |
testcase_07 | AC | 403 ms
95,680 KB |
testcase_08 | AC | 450 ms
100,288 KB |
testcase_09 | AC | 266 ms
84,504 KB |
testcase_10 | AC | 291 ms
84,744 KB |
testcase_11 | MLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] 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 = 10**9 md = 998244353 # md = 10**9+7 n, k = LI() aa = LI() dp = [{} for _ in range(k+1)] for i, a in enumerate(aa): dp[k][0, i, i] = a*k def chmax(i, j, l, r, val): now = dp[i].setdefault((j, l, r), -inf) if val > now: dp[i][j, l, r] = val ans = [-inf]*n for i in range(k, -1, -1): for (j, l, r), pre in dp[i].items(): p0 = r-i if j else l+i if l <= p0 <= r: ans[p0] = max(ans[p0], pre) if i == 0: continue # 左に出る d = r-l+1 if j else 1 if l-1 >= 0 and i-d >= 0: chmax(i-d, 0, l-1, r, pre+(i-d)*aa[l-1]) # 右に出る d = 1 if j else r-l+1 if r+1 < n and i-d >= 0: chmax(i-d, 1, l, r+1, pre+(i-d)*aa[r+1]) # 動かない if l != r: chmax(i-2, j, l, r, pre) print(*ans, sep="\n")