結果

問題 No.489 株に挑戦
ユーザー 0w10w1
提出日時 2017-04-10 19:51:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 877 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 126,924 KB
最終ジャッジ日時 2024-07-18 05:44:20
合計ジャッジ時間 20,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 638 ms
100,672 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 43 ms
53,120 KB
testcase_07 AC 44 ms
53,120 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 43 ms
52,992 KB
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 48 ms
59,008 KB
testcase_12 AC 43 ms
52,992 KB
testcase_13 AC 44 ms
53,376 KB
testcase_14 AC 48 ms
58,752 KB
testcase_15 AC 194 ms
79,608 KB
testcase_16 TLE -
testcase_17 AC 291 ms
83,948 KB
testcase_18 AC 768 ms
101,524 KB
testcase_19 AC 546 ms
97,240 KB
testcase_20 TLE -
testcase_21 AC 331 ms
86,660 KB
testcase_22 AC 280 ms
81,836 KB
testcase_23 AC 675 ms
102,268 KB
testcase_24 TLE -
testcase_25 AC 49 ms
59,520 KB
testcase_26 AC 879 ms
125,196 KB
testcase_27 TLE -
testcase_28 AC 40 ms
52,352 KB
testcase_29 AC 40 ms
52,224 KB
testcase_30 AC 979 ms
126,288 KB
testcase_31 AC 807 ms
124,552 KB
testcase_32 AC 823 ms
103,952 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 555 ms
94,720 KB
testcase_36 AC 293 ms
83,500 KB
testcase_37 AC 661 ms
102,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D, K = map( int, input().split() )
X = list( int( input() ) for i in range( N ) )

def build( maxv, t, lb, rb ):
  if lb + 1 == rb:
    maxv[ t ] = [ X[ lb ], - lb ]
    return
  mid = lb + rb >> 1
  build( maxv, t << 1, lb, mid )
  build( maxv, t << 1 | 1, mid, rb )
  maxv[ t ] = max( maxv[ t << 1 ], maxv[ t << 1 | 1 ] )

maxv = [ [ 0, 0 ] for i in range( N << 2 ) ]
build( maxv, 1, 0, N )

def query( t, lb, rb, ql, qr ):
  if qr <= lb or rb <= ql:
    return [ -1, -1 ]
  if ql <= lb and rb <= qr:
    return maxv[ t ]
  mid = lb + rb >> 1
  return max( query( t << 1, lb, mid, ql, qr ), query( t << 1 | 1, mid, rb, ql, qr ) )

best = 0
bl, br = -1, -1
for i in range( N - 1 ):
  mx = query( 1, 0, N, i + 1, min( N, i + D + 1 ) )
  if best >= mx[ 0 ] - X[ i ]: continue
  best = mx[ 0 ] - X[ i ]
  bl, br = i, -mx[ 1 ]

print( best * K )
if bl != -1:
  print( bl, br )
0