結果
問題 | No.489 株に挑戦 |
ユーザー | H3PO4 |
提出日時 | 2021-02-27 13:13:49 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,638 bytes |
コンパイル時間 | 357 ms |
コンパイル使用メモリ | 82,476 KB |
実行使用メモリ | 82,752 KB |
最終ジャッジ日時 | 2024-10-02 17:25:28 |
合計ジャッジ時間 | 6,359 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | AC | 39 ms
53,484 KB |
testcase_03 | AC | 39 ms
53,764 KB |
testcase_04 | AC | 38 ms
52,828 KB |
testcase_05 | AC | 39 ms
52,648 KB |
testcase_06 | AC | 40 ms
54,236 KB |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 40 ms
53,356 KB |
testcase_10 | RE | - |
testcase_11 | AC | 39 ms
53,948 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 182 ms
80,092 KB |
testcase_17 | RE | - |
testcase_18 | AC | 155 ms
81,876 KB |
testcase_19 | AC | 155 ms
82,012 KB |
testcase_20 | AC | 187 ms
80,716 KB |
testcase_21 | WA | - |
testcase_22 | AC | 104 ms
76,792 KB |
testcase_23 | RE | - |
testcase_24 | AC | 197 ms
80,836 KB |
testcase_25 | AC | 40 ms
53,676 KB |
testcase_26 | AC | 165 ms
79,568 KB |
testcase_27 | RE | - |
testcase_28 | AC | 39 ms
53,188 KB |
testcase_29 | AC | 38 ms
52,804 KB |
testcase_30 | WA | - |
testcase_31 | AC | 155 ms
79,968 KB |
testcase_32 | WA | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | WA | - |
ソースコード
class SegmentTree: """ https://qiita.com/dn6049949/items/afa12d5d079f518de368 から拝借しています。 """ def __init__(self, size, f=lambda x, y: max(x, y), default=0): self.size = 2 ** (size - 1).bit_length() self.default = default self.dat = [default] * (self.size * 2) self.f = f def initialize(self, A): for i, a in enumerate(A): self.dat[self.size + i] = a for i in range(self.size - 2, -1, -1): self.dat[i] = self.f(self.dat[2 * i + 1], self.dat[2 * i + 2]) def update(self, i, x): i += self.size self.dat[i] = x while i > 0: i >>= 1 self.dat[i] = self.f(self.dat[i * 2], self.dat[i * 2 + 1]) def query(self, l, r): """半開区間[l,r)""" l += self.size r += self.size lres, rres = self.default, self.default while l < r: if l & 1: lres = self.f(lres, self.dat[l]) l += 1 if r & 1: r -= 1 rres = self.f(self.dat[r], rres) l >>= 1 r >>= 1 res = self.f(lres, rres) return res N, D, K = map(int, input().split()) S = SegmentTree(N + 1) X = [int(input()) for _ in range(N)] S.initialize([0] + X) p_max = 0 lidx = 0 for i, x in enumerate(X, 1): M = S.query(i, min(i + D, N) + 1) profit = K * (M - x) if p_max < profit: p_max = profit lidx = i - 1 print(p_max) if p_max: M = X[lidx] + p_max // K ridx = X[lidx:min(lidx + D + 1, N)].index(M) + lidx print(lidx, ridx)