結果

問題 No.489 株に挑戦
ユーザー tookunn_1213tookunn_1213
提出日時 2017-03-01 19:03:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 1,000 ms
コード長 904 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-19 23:37:31
合計ジャッジ時間 9,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
79,616 KB
testcase_01 AC 259 ms
78,720 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 47 ms
57,984 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 48 ms
58,240 KB
testcase_10 AC 43 ms
52,608 KB
testcase_11 AC 49 ms
58,240 KB
testcase_12 AC 47 ms
58,368 KB
testcase_13 AC 49 ms
59,392 KB
testcase_14 AC 49 ms
59,392 KB
testcase_15 AC 102 ms
77,056 KB
testcase_16 AC 437 ms
80,384 KB
testcase_17 AC 106 ms
76,672 KB
testcase_18 AC 254 ms
79,232 KB
testcase_19 AC 244 ms
78,464 KB
testcase_20 AC 445 ms
80,512 KB
testcase_21 AC 173 ms
77,952 KB
testcase_22 AC 129 ms
76,928 KB
testcase_23 AC 176 ms
78,720 KB
testcase_24 AC 487 ms
80,768 KB
testcase_25 AC 47 ms
57,856 KB
testcase_26 AC 430 ms
80,384 KB
testcase_27 AC 434 ms
80,768 KB
testcase_28 AC 41 ms
52,352 KB
testcase_29 AC 45 ms
52,352 KB
testcase_30 AC 406 ms
80,512 KB
testcase_31 AC 418 ms
80,384 KB
testcase_32 AC 250 ms
78,720 KB
testcase_33 AC 432 ms
80,640 KB
testcase_34 AC 376 ms
80,128 KB
testcase_35 AC 211 ms
78,336 KB
testcase_36 AC 146 ms
77,568 KB
testcase_37 AC 244 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF=-1000000007
SQRT_N = 512
N,D,K = map(int,input().split())
x = [int(input()) for i in range(N)]
b_size = (N + SQRT_N - 1) // SQRT_N
bucket = [(INF,INF) for i in range(b_size * SQRT_N)]
bucketMax = [(INF,INF) for i in range(b_size)]

def query(left,right):
	global b_size
	ret = (INF,INF)
	for i in range(b_size):
		l = i * SQRT_N
		r = (i+1) * SQRT_N
		if r <= left or right <= l:
			continue
		if left <= l and r <= right:
			ret = max(ret,bucketMax[i])
		else:
			s,t = max(left,l),min(right,r)
			while s < t:
				ret = max(ret,bucket[s])
				s+=1
	return ret

for i in range(N):
	bucket[i] = (x[i],-i)
for i in range(N):
	k = i // SQRT_N
	bucketMax[k] = max(bucketMax[k],bucket[i])
ans,pair = 0,()
for i in range(N-1):
	ret = query(i+1,min(N,i+D+1))
	if ans < ret[0]-x[i]:
		ans = ret[0]-x[i]
		pair = (i,-ret[1])
if ans <= 0:
	print(0)
else:
	print(ans*K)
	print(' '.join([str(_) for _ in pair]))
0