結果

問題 No.489 株に挑戦
ユーザー roarisroaris
提出日時 2019-08-21 19:28:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 1,000 ms
コード長 1,635 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 97,084 KB
最終ジャッジ日時 2024-07-20 00:16:39
合計ジャッジ時間 6,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
91,536 KB
testcase_01 AC 197 ms
87,320 KB
testcase_02 AC 44 ms
54,400 KB
testcase_03 AC 44 ms
54,528 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 45 ms
54,784 KB
testcase_06 AC 47 ms
54,528 KB
testcase_07 AC 47 ms
55,040 KB
testcase_08 AC 44 ms
53,760 KB
testcase_09 AC 47 ms
54,528 KB
testcase_10 AC 48 ms
54,400 KB
testcase_11 AC 46 ms
54,656 KB
testcase_12 AC 48 ms
55,040 KB
testcase_13 AC 48 ms
54,912 KB
testcase_14 AC 50 ms
55,168 KB
testcase_15 AC 149 ms
78,336 KB
testcase_16 AC 251 ms
82,804 KB
testcase_17 AC 116 ms
78,480 KB
testcase_18 AC 196 ms
80,584 KB
testcase_19 AC 185 ms
80,640 KB
testcase_20 AC 251 ms
93,612 KB
testcase_21 AC 154 ms
81,920 KB
testcase_22 AC 130 ms
78,976 KB
testcase_23 AC 186 ms
89,064 KB
testcase_24 AC 274 ms
96,316 KB
testcase_25 AC 50 ms
54,784 KB
testcase_26 AC 224 ms
96,080 KB
testcase_27 AC 210 ms
82,960 KB
testcase_28 AC 45 ms
54,144 KB
testcase_29 AC 44 ms
54,464 KB
testcase_30 AC 239 ms
96,172 KB
testcase_31 AC 223 ms
97,084 KB
testcase_32 AC 192 ms
88,820 KB
testcase_33 AC 286 ms
95,136 KB
testcase_34 AC 266 ms
93,080 KB
testcase_35 AC 172 ms
84,992 KB
testcase_36 AC 140 ms
79,872 KB
testcase_37 AC 200 ms
88,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_left

class SegmentTree:
    def __init__(self, N, mode):
        n_ = 1
         
        while n_ < N:
            n_ *= 2
             
        self.n = n_
        self.mode = mode
         
        if self.mode == min:
            self.arr = [2**31-1] * (2*self.n - 1)
        elif self.mode == max:
            self.arr = [-2**31+1] * (2*self.n - 1)
     
    def update(self, k, a):
        k += self.n - 1
        self.arr[k] = a
         
        while k > 0:
            k = (k - 1) // 2
            self.arr[k] = self.mode(self.arr[2*k+1], self.arr[2*k+2])
     
    def query(self, l, r):
        L, R = l + self.n, r + self.n
         
        if self.mode == min:
            res = 2**31-1
        else:
            res = -2**31+1
         
        while L < R:
            if R & 1:
                R -= 1
                res = self.mode(res, self.arr[R-1])
             
            if L & 1:
                res = self.mode(res, self.arr[L-1])
                L += 1
             
            L >>= 1
            R >>= 1
         
        return res

N, D, K = map(int, input().split())
x = [int(input()) for _ in range(N)]
st = SegmentTree(N, max)
d = defaultdict(list)

for i in range(N):
    st.update(i, x[i])
    d[x[i]].append(i)

ans = 0
s, e = None, None

for i in range(N-1):
    before = x[i]
    after = st.query(i+1, min(N, i+1+D))
    profit = (after - before) * K
    
    if profit > ans:
        s = i
        index = bisect_left(d[after], i)
        e = d[after][index]
        ans = profit
        
print(ans)

if ans > 0:
    print(s, e)
0