結果

問題 No.489 株に挑戦
ユーザー pekempeypekempey
提出日時 2017-02-27 20:57:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 1,000 ms
コード長 896 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 88,716 KB
最終ジャッジ日時 2024-07-19 23:36:05
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
82,624 KB
testcase_01 AC 153 ms
85,676 KB
testcase_02 AC 53 ms
69,120 KB
testcase_03 AC 53 ms
69,120 KB
testcase_04 AC 55 ms
69,632 KB
testcase_05 AC 55 ms
69,760 KB
testcase_06 AC 58 ms
70,144 KB
testcase_07 AC 57 ms
70,016 KB
testcase_08 AC 54 ms
69,248 KB
testcase_09 AC 60 ms
70,144 KB
testcase_10 AC 57 ms
69,888 KB
testcase_11 AC 58 ms
70,272 KB
testcase_12 AC 57 ms
69,760 KB
testcase_13 AC 56 ms
69,888 KB
testcase_14 AC 60 ms
69,632 KB
testcase_15 AC 118 ms
85,632 KB
testcase_16 AC 190 ms
82,688 KB
testcase_17 AC 105 ms
81,460 KB
testcase_18 AC 180 ms
85,376 KB
testcase_19 AC 173 ms
82,432 KB
testcase_20 AC 197 ms
83,788 KB
testcase_21 AC 135 ms
82,432 KB
testcase_22 AC 123 ms
85,760 KB
testcase_23 AC 150 ms
87,324 KB
testcase_24 AC 191 ms
88,136 KB
testcase_25 AC 58 ms
69,760 KB
testcase_26 AC 184 ms
88,364 KB
testcase_27 AC 190 ms
88,716 KB
testcase_28 AC 52 ms
69,376 KB
testcase_29 AC 54 ms
69,504 KB
testcase_30 AC 162 ms
88,188 KB
testcase_31 AC 149 ms
88,000 KB
testcase_32 AC 151 ms
86,912 KB
testcase_33 AC 196 ms
86,528 KB
testcase_34 AC 178 ms
83,336 KB
testcase_35 AC 145 ms
82,560 KB
testcase_36 AC 146 ms
84,928 KB
testcase_37 AC 167 ms
86,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 1 << 17
INF = 10 ** 9
n, d, K = map(int, input().split())
x = [int(input()) for _ in range(n)]

dat = [(INF, INF) for _ in range(N * 2)]

def seg_update(k, v):
    global dat
    k += N
    dat[k] = (k, v)
    while k > 1:
        dat[k >> 1] = min(dat[k], dat[k ^ 1])
        k >>= 1

def seg_query(l, r):
    l += N
    r += N
    mn = (INF, INF)
    while l < r:
        if l & 1:
            mn = min(mn, dat[l])
            l += 1
        if r & 1:
            mn = min(mn, dat[r - 1])
        l >>= 1
        r >>= 1
    return mn        

for i in range(n):
    dat[i + N] = (x[i], i)

for i in reversed(range(1, N)):
    dat[i] = min(dat[i * 2], dat[i * 2 + 1])

opt = (0, 0, 0)
for i in range(1, n):
    j = max(0, i - d)
    val = seg_query(j, i)
    opt = max(opt, (x[i] - val[0], -val[1], -i))

if opt[0] == 0:
    print(0)
else:
    print(opt[0] * K)
    print(-opt[1], -opt[2])
0