結果

問題 No.489 株に挑戦
ユーザー hanorverhanorver
提出日時 2017-03-01 20:43:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 488 ms / 1,000 ms
コード長 904 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-07-19 23:41:08
合計ジャッジ時間 8,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
79,776 KB
testcase_01 AC 256 ms
78,872 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 43 ms
52,864 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 43 ms
57,984 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 44 ms
58,112 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 48 ms
58,240 KB
testcase_12 AC 45 ms
59,008 KB
testcase_13 AC 45 ms
59,008 KB
testcase_14 AC 43 ms
59,136 KB
testcase_15 AC 89 ms
76,612 KB
testcase_16 AC 433 ms
80,256 KB
testcase_17 AC 109 ms
76,928 KB
testcase_18 AC 254 ms
79,104 KB
testcase_19 AC 239 ms
78,544 KB
testcase_20 AC 442 ms
80,256 KB
testcase_21 AC 171 ms
77,960 KB
testcase_22 AC 119 ms
76,800 KB
testcase_23 AC 166 ms
78,976 KB
testcase_24 AC 488 ms
81,024 KB
testcase_25 AC 44 ms
57,984 KB
testcase_26 AC 427 ms
80,756 KB
testcase_27 AC 436 ms
80,512 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 408 ms
80,768 KB
testcase_31 AC 418 ms
80,768 KB
testcase_32 AC 250 ms
78,660 KB
testcase_33 AC 430 ms
80,596 KB
testcase_34 AC 373 ms
80,000 KB
testcase_35 AC 211 ms
78,208 KB
testcase_36 AC 135 ms
77,816 KB
testcase_37 AC 237 ms
78,976 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