結果

問題 No.489 株に挑戦
ユーザー titiatitia
提出日時 2023-06-13 01:13:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,432 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-06-12 00:19:51
合計ジャッジ時間 16,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 637 ms
15,744 KB
testcase_01 AC 520 ms
13,696 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 59 ms
11,008 KB
testcase_16 AC 941 ms
16,128 KB
testcase_17 AC 84 ms
11,392 KB
testcase_18 AC 468 ms
13,568 KB
testcase_19 AC 421 ms
13,184 KB
testcase_20 AC 987 ms
16,384 KB
testcase_21 AC 240 ms
11,904 KB
testcase_22 AC 86 ms
11,264 KB
testcase_23 AC 369 ms
13,952 KB
testcase_24 TLE -
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 992 ms
17,024 KB
testcase_27 AC 889 ms
16,768 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 504 ms
14,080 KB
testcase_33 TLE -
testcase_34 AC 876 ms
16,128 KB
testcase_35 AC 366 ms
13,184 KB
testcase_36 AC 142 ms
11,520 KB
testcase_37 AC 555 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,D,K=map(int,input().split())
A=[int(input()) for i in range(N)]

# Segment tree(1-indexed,再帰を使わないもの。非可換の場合にも対応)

def seg_function(x,y): # Segment treeで扱うfunction
    return max(x,y)

seg_el=1<<(N.bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

for i in range(N): # Aを対応する箇所へupdate
    SEG[i+seg_el]=A[i]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS1=0
    ANS2=0

    while L<R:
        if L & 1:
            ANS1=seg_function(ANS1, SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS2=seg_function(SEG[R], ANS2)
        L>>=1
        R>>=1

    return seg_function(ANS1, ANS2)

ANS=-1<<60

for i in range(N):
    x=getvalues(i+1,min(N,i+D+1))

    if ANS<x-A[i]:
        ANS=x-A[i]
        ind=i

if ANS<=0:
    print(0)
    exit()

for j in range(ind,ind+D+1):
    if A[j]-A[ind]==ANS:
        print(ANS*K)
        print(ind,j)
        break
    
0