結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー fiordfiord
提出日時 2017-07-12 17:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 3,000 ms
コード長 722 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-10-07 16:45:07
合計ジャッジ時間 2,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 44 ms
51,584 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 133 ms
81,024 KB
testcase_08 AC 144 ms
82,304 KB
testcase_09 AC 124 ms
80,768 KB
testcase_10 AC 125 ms
81,024 KB
testcase_11 AC 124 ms
80,768 KB
testcase_12 AC 126 ms
81,024 KB
testcase_13 AC 158 ms
82,432 KB
testcase_14 AC 147 ms
82,560 KB
testcase_15 AC 159 ms
82,176 KB
testcase_16 AC 151 ms
82,432 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n,m=map(int,input().split())
k=int(input())
a=[int(input()) for i in range(n-1)]
a.sort()
l=0
r=n-3
cnt=0
while l<r:
	while l<r and a[l]+a[r]<=a[n-2]+k:
		l+=1
	if l<r:
		l+=1
		r-=1
		cnt+=1
if cnt>=m:
	print(-1)
	sys.exit(0)
low=0
high=n-2
for i in range(30):
	mid=int((low+high)/2)
	l=0
	r=n-2
	cnt=0
	while l<mid and mid<r:
		while l<mid and a[l]+a[r]<=a[mid]+k:
			l+=1
		if l<mid:
			l+=1
			r-=1
			cnt+=1
	if l<mid:
		r=mid-1
		while l<r:
			while l<r and a[l]+a[r]<=a[mid]+k:
				l+=1
			if l<r:
				l+=1
				r-=1
				cnt+=1
	elif mid<r:
		l=mid+1
		while l<r:
			while l<r and a[l]+a[r]<=a[mid]+k:
				l+=1
			if l<r:
				l+=1
				r-=1
				cnt+=1
	if cnt>=m:
		low=mid
	else:
		high=mid
print(a[high])
0