結果

問題 No.2495 Three Sets
ユーザー 👑 p-adicp-adic
提出日時 2023-09-05 18:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,889 ms / 3,000 ms
コード長 624 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 107,940 KB
最終ジャッジ日時 2024-06-24 03:12:21
合計ジャッジ時間 11,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,548 KB
testcase_01 AC 54 ms
61,356 KB
testcase_02 AC 58 ms
64,156 KB
testcase_03 AC 49 ms
61,840 KB
testcase_04 AC 52 ms
62,672 KB
testcase_05 AC 56 ms
63,312 KB
testcase_06 AC 54 ms
63,152 KB
testcase_07 AC 49 ms
62,556 KB
testcase_08 AC 52 ms
64,660 KB
testcase_09 AC 61 ms
68,072 KB
testcase_10 AC 63 ms
69,308 KB
testcase_11 AC 90 ms
75,084 KB
testcase_12 AC 109 ms
75,212 KB
testcase_13 AC 1,617 ms
87,388 KB
testcase_14 AC 1,706 ms
95,932 KB
testcase_15 AC 1,420 ms
86,056 KB
testcase_16 AC 1,884 ms
107,580 KB
testcase_17 AC 1,889 ms
107,940 KB
testcase_18 AC 45 ms
60,012 KB
testcase_19 AC 109 ms
101,384 KB
testcase_20 AC 107 ms
100,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
I=lambda:list(map(int,input().split()))
N=I()
B=3000
W=6002
L=[]
S=[]
U=[]
C=[B]
for n in R(3):
	S+=[[0]]
	U+=[[0]]
	L+=[1]
	X=I()
	A={-B:0}
	for x in X:A[-x]=A[-x]+1if -x in A else 1
	for a in sorted(A):
		S[n]+=[S[n][L[n]-1]+A[a]]
		U[n]+=[U[n][L[n]-1]-a*A[a]]
		if n>1:C+=[-a]
		L[n]+=1
X=[]
for x in R(W):
	a=l=0
	r=L[2]
	while l+1<r:
		m=(l+r)//2
		if C[m]>=x-B:l=m
		else:r=m
	X+=[l]
for i in R(L[0]):
	for j in R(L[1]):
		if U[1][j]+B*S[0][i]>=0:
			if S[0][i]<1:m=L[2]-1
			else:
				r=max(0,-(U[1][j]//S[0][i])+B)
				m=[0,X[r]][r<W]
			if m:a=max(a,U[0][i]*S[1][j]+U[1][j]*S[2][m]+U[2][m]*S[0][i])
print(a)
0