結果

問題 No.489 株に挑戦
ユーザー kjnhokjnho
提出日時 2017-02-25 01:30:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,232 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-06-11 03:38:29
合計ジャッジ時間 8,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
14,208 KB
testcase_01 AC 252 ms
13,568 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 29 ms
11,136 KB
testcase_04 AC 28 ms
11,136 KB
testcase_05 AC 29 ms
11,136 KB
testcase_06 AC 30 ms
11,136 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 30 ms
11,136 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 28 ms
11,264 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 30 ms
11,136 KB
testcase_13 AC 29 ms
11,136 KB
testcase_14 AC 32 ms
11,136 KB
testcase_15 AC 42 ms
11,392 KB
testcase_16 AC 615 ms
15,232 KB
testcase_17 AC 60 ms
11,648 KB
testcase_18 AC 183 ms
12,928 KB
testcase_19 AC 194 ms
13,056 KB
testcase_20 AC 578 ms
15,488 KB
testcase_21 AC 85 ms
12,288 KB
testcase_22 AC 49 ms
11,520 KB
testcase_23 AC 158 ms
13,184 KB
testcase_24 AC 721 ms
16,000 KB
testcase_25 AC 30 ms
11,136 KB
testcase_26 AC 459 ms
16,384 KB
testcase_27 WA -
testcase_28 AC 31 ms
11,264 KB
testcase_29 AC 32 ms
11,136 KB
testcase_30 AC 255 ms
17,152 KB
testcase_31 AC 223 ms
16,768 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 62 ms
11,776 KB
testcase_37 AC 239 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy as dcopy
import bisect
def main():
    N,D,K = map(int, input().split())
    values = [int(input()) for i in range(N)]

    minimum = values[0]
    w_min_index = 0
    MAX = 0
    for i in range(1, D+1):
        if values[i] - minimum > MAX:
            min_index = w_min_index
            max_index = i
            MAX = values[i] - minimum
            
        # for next
        if values[i] < minimum:
            w_min_index = i
            minimum = values[i]

    h_window = sorted(values[:D])
    for j in range(D+1, N):
        del h_window[bisect.bisect_left(h_window, values[j-D-1])]

        if len(h_window) == 0:
            w_min_index = j-1
        elif values[j-1] < h_window[0]:
            w_min_index = j-1

        bisect.insort(h_window, values[j-1])
        minimum = h_window[0]
        tmp = values[j] - minimum
        if tmp > MAX:
            MAX = tmp
            max_index = j
            min_index = w_min_index

    # print(MAX, min_index, max_index)

    if MAX <= 0:
        print(0)
    else:
        print(K*MAX)
        print(min_index, max_index)

if __name__ == "__main__":  # {{{
    try:
        import test
        test.test()
    except:
        main()  # }}}

 
0