結果

問題 No.545 ママの大事な二人の子供
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-30 02:18:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-09-30 02:18:05
合計ジャッジ時間 4,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,224 KB
testcase_01 AC 34 ms
53,076 KB
testcase_02 AC 31 ms
52,392 KB
testcase_03 AC 32 ms
52,200 KB
testcase_04 AC 33 ms
53,060 KB
testcase_05 AC 34 ms
52,556 KB
testcase_06 AC 34 ms
53,160 KB
testcase_07 AC 34 ms
52,492 KB
testcase_08 AC 35 ms
53,016 KB
testcase_09 AC 46 ms
60,560 KB
testcase_10 AC 39 ms
60,936 KB
testcase_11 AC 43 ms
61,740 KB
testcase_12 AC 46 ms
60,680 KB
testcase_13 AC 46 ms
62,768 KB
testcase_14 AC 47 ms
62,984 KB
testcase_15 AC 42 ms
61,080 KB
testcase_16 AC 87 ms
64,464 KB
testcase_17 AC 50 ms
65,504 KB
testcase_18 AC 60 ms
71,120 KB
testcase_19 AC 61 ms
74,268 KB
testcase_20 AC 94 ms
76,288 KB
testcase_21 AC 33 ms
51,456 KB
testcase_22 AC 107 ms
79,488 KB
testcase_23 AC 177 ms
83,072 KB
testcase_24 AC 110 ms
80,384 KB
testcase_25 AC 174 ms
83,584 KB
testcase_26 AC 171 ms
83,712 KB
testcase_27 AC 181 ms
83,072 KB
testcase_28 AC 201 ms
83,456 KB
testcase_29 AC 174 ms
83,328 KB
testcase_30 AC 181 ms
83,072 KB
testcase_31 AC 174 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

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=[]
	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