結果

問題 No.489 株に挑戦
ユーザー pekempeypekempey
提出日時 2017-02-27 21:50:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 1,000 ms
コード長 807 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-07-19 23:36:28
合計ジャッジ時間 5,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
81,152 KB
testcase_01 AC 161 ms
80,256 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 40 ms
53,888 KB
testcase_04 AC 39 ms
53,760 KB
testcase_05 AC 40 ms
54,400 KB
testcase_06 AC 44 ms
60,160 KB
testcase_07 AC 46 ms
60,288 KB
testcase_08 AC 40 ms
53,760 KB
testcase_09 AC 45 ms
60,416 KB
testcase_10 AC 47 ms
61,312 KB
testcase_11 AC 49 ms
61,440 KB
testcase_12 AC 48 ms
60,288 KB
testcase_13 AC 47 ms
60,800 KB
testcase_14 AC 50 ms
60,928 KB
testcase_15 AC 119 ms
79,232 KB
testcase_16 AC 223 ms
81,920 KB
testcase_17 AC 107 ms
78,592 KB
testcase_18 AC 182 ms
80,512 KB
testcase_19 AC 168 ms
80,128 KB
testcase_20 AC 199 ms
81,536 KB
testcase_21 AC 131 ms
79,872 KB
testcase_22 AC 124 ms
78,976 KB
testcase_23 AC 171 ms
80,768 KB
testcase_24 AC 214 ms
82,432 KB
testcase_25 AC 46 ms
60,800 KB
testcase_26 AC 183 ms
81,664 KB
testcase_27 AC 213 ms
82,816 KB
testcase_28 AC 42 ms
54,144 KB
testcase_29 AC 40 ms
54,144 KB
testcase_30 AC 176 ms
82,048 KB
testcase_31 AC 179 ms
81,536 KB
testcase_32 AC 163 ms
80,640 KB
testcase_33 AC 208 ms
82,176 KB
testcase_34 AC 200 ms
81,792 KB
testcase_35 AC 146 ms
79,872 KB
testcase_36 AC 130 ms
79,488 KB
testcase_37 AC 176 ms
80,768 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)] * (N * 2)

def seg_update(k, v):
    global dat
    dat[k + N] = (v, i)
    k += N
    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):
    seg_update(i, x[i])

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