結果
問題 | No.448 ゆきこーだーの雨と雪 (3) |
ユーザー | tktk_snsn |
提出日時 | 2021-02-25 00:55:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,637 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 81,980 KB |
実行使用メモリ | 184,380 KB |
最終ジャッジ日時 | 2024-09-25 01:42:59 |
合計ジャッジ時間 | 13,761 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,812 KB |
testcase_01 | AC | 39 ms
54,108 KB |
testcase_02 | AC | 39 ms
53,536 KB |
testcase_03 | AC | 40 ms
53,204 KB |
testcase_04 | AC | 52 ms
63,148 KB |
testcase_05 | AC | 53 ms
64,516 KB |
testcase_06 | AC | 58 ms
67,356 KB |
testcase_07 | AC | 53 ms
64,140 KB |
testcase_08 | WA | - |
testcase_09 | AC | 55 ms
66,544 KB |
testcase_10 | AC | 47 ms
62,088 KB |
testcase_11 | AC | 56 ms
65,844 KB |
testcase_12 | WA | - |
testcase_13 | AC | 213 ms
90,640 KB |
testcase_14 | AC | 187 ms
94,936 KB |
testcase_15 | AC | 299 ms
126,848 KB |
testcase_16 | WA | - |
testcase_17 | AC | 334 ms
161,444 KB |
testcase_18 | AC | 169 ms
85,536 KB |
testcase_19 | WA | - |
testcase_20 | AC | 246 ms
115,292 KB |
testcase_21 | AC | 503 ms
177,924 KB |
testcase_22 | AC | 273 ms
116,256 KB |
testcase_23 | AC | 538 ms
177,868 KB |
testcase_24 | WA | - |
testcase_25 | AC | 499 ms
176,004 KB |
testcase_26 | WA | - |
testcase_27 | AC | 450 ms
159,380 KB |
testcase_28 | WA | - |
testcase_29 | AC | 293 ms
122,312 KB |
testcase_30 | WA | - |
testcase_31 | AC | 165 ms
90,048 KB |
testcase_32 | AC | 153 ms
94,160 KB |
testcase_33 | WA | - |
testcase_34 | AC | 522 ms
184,000 KB |
testcase_35 | WA | - |
testcase_36 | AC | 428 ms
183,744 KB |
testcase_37 | WA | - |
testcase_38 | AC | 514 ms
184,128 KB |
ソースコード
from operator import add import bisect from itertools import accumulate import sys input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) inf = 10**18 class SparseTable: def __init__(self, N, arr, op, u): self.N = N self.depth = N.bit_length() self.op = op self.arr = tuple(arr) self.u = u self._build() def __call__(self, s, t): """ [s, t)区間(0-indexed)での値を返す """ if s == t: return self.u i = (t - s).bit_length() - 1 L = self.table[i][s] R = self.table[i][t - (1 << i)] return self.op(L, R) def _build(self): self.table = [] self.table.append(self.arr) N = self.N for i in range(self.depth - 1): shift = 1 << i N -= shift t = tuple(self.op(self.table[-1][j], self.table[-1][j+shift]) for j in range(N)) self.table.append(t) N, K = map(int, input().split()) T = [0] * N D = [0] * N for i in range(N): T[i], D[i] = map(int, input().split()) Dmax = SparseTable(N, D, max, 0) Dacc = [0] + list(accumulate(D)) Dsum = lambda s, t: Dacc[t] - Dacc[s] dp = [(inf, inf) for _ in range(N + 1)] dp[0] = (0, 0) for i in range(N): a, b = dp[i] #自分で処理 na = max(a, D[i]) nb = add(b, D[i]) if dp[i + 1] > (na, nb): dp[i + 1] = (na, nb) #姉が処理 to = bisect.bisect_left(T, T[i] + K) na = max(a, Dmax(i+1, to)) nb = add(b, Dsum(i+1, to)) if dp[to] > (na, nb): dp[to] = (na, nb) print(*dp[N], sep="\n")