結果

問題 No.545 ママの大事な二人の子供
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-30 02:12:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 83,720 KB
最終ジャッジ日時 2024-09-30 02:12:06
合計ジャッジ時間 4,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,432 KB
testcase_01 AC 38 ms
52,312 KB
testcase_02 AC 37 ms
52,660 KB
testcase_03 AC 37 ms
52,708 KB
testcase_04 AC 37 ms
52,780 KB
testcase_05 AC 37 ms
53,364 KB
testcase_06 AC 39 ms
52,396 KB
testcase_07 AC 37 ms
53,216 KB
testcase_08 AC 39 ms
52,264 KB
testcase_09 AC 43 ms
60,712 KB
testcase_10 AC 46 ms
61,700 KB
testcase_11 AC 45 ms
61,716 KB
testcase_12 AC 47 ms
60,996 KB
testcase_13 AC 48 ms
62,368 KB
testcase_14 AC 52 ms
62,552 KB
testcase_15 AC 46 ms
61,316 KB
testcase_16 AC 65 ms
64,152 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 38 ms
52,848 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 153 ms
80,960 KB
testcase_25 WA -
testcase_26 AC 251 ms
83,300 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
c=[]
for i in range(n):
	a,b=map(int,input().split())
	c+=[(a,-b)]
X=10**20
g=X
if n<=16:
	for i in range(1<<n):
		p=0
		for j in range(n):
			p+=c[j][(i>>j)&1]
		g=min(g,abs(p))
else:
	pl=[-X,X]
	for i in range(1<<(n//2)):
		p=0
		for j in range(n//2):
			p+=c[j][(i>>j)&1]
		pl+=[p]
	pl.sort()
	pr=[-X,X]
	for i in range(1<<(n-n//2)):
		p=0
		for j in range(n-n//2):
			p+=c[n//2+j][(i>>j)&1]
		pr+=[p]
	pr.sort()
	from bisect import bisect_left
	for v in pl:
		y=bisect_left(pr,-v)
		g=min(g,abs(v+pr[y]),abs(v+pr[y-1]))
print(g)
0