結果

問題 No.2623 Room Allocation
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-09 22:34:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 113,900 KB
最終ジャッジ日時 2024-09-28 15:46:46
合計ジャッジ時間 6,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,384 KB
testcase_01 AC 35 ms
52,872 KB
testcase_02 AC 36 ms
52,672 KB
testcase_03 AC 35 ms
52,152 KB
testcase_04 AC 34 ms
53,152 KB
testcase_05 AC 35 ms
52,460 KB
testcase_06 AC 214 ms
104,080 KB
testcase_07 AC 209 ms
104,072 KB
testcase_08 AC 207 ms
104,608 KB
testcase_09 AC 215 ms
103,948 KB
testcase_10 AC 48 ms
75,436 KB
testcase_11 AC 49 ms
75,164 KB
testcase_12 AC 46 ms
75,556 KB
testcase_13 AC 45 ms
75,476 KB
testcase_14 AC 234 ms
112,928 KB
testcase_15 AC 223 ms
103,888 KB
testcase_16 AC 97 ms
82,856 KB
testcase_17 AC 59 ms
69,628 KB
testcase_18 AC 225 ms
103,620 KB
testcase_19 AC 220 ms
103,360 KB
testcase_20 AC 230 ms
103,684 KB
testcase_21 AC 231 ms
103,888 KB
testcase_22 AC 182 ms
95,160 KB
testcase_23 AC 126 ms
87,128 KB
testcase_24 AC 228 ms
103,676 KB
testcase_25 AC 187 ms
97,612 KB
testcase_26 AC 76 ms
77,476 KB
testcase_27 AC 264 ms
113,000 KB
testcase_28 AC 142 ms
87,928 KB
testcase_29 AC 111 ms
81,600 KB
testcase_30 AC 263 ms
113,900 KB
testcase_31 AC 84 ms
77,692 KB
testcase_32 AC 96 ms
77,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y=map(int,input().split())
client=[]
for i in range(N):
	P,c=input().split()
	P=int(P)
	client.append((P,c))
af=[]
bf=[]
a=0
b=0
ans=0
for i in range(X+Y):
	cnt=[0,0]
	for j in range(i,N,X+Y):
		P,c=client[j]
		if c=="A":
			cnt[0]+=P
		else:
			cnt[1]+=P
	if max(cnt[0],cnt[1])==0:
		continue
	if cnt[0]>=cnt[1]:
		a+=1
		ans+=cnt[0]
		af.append(abs(cnt[0]-cnt[1]))
	else:
		b+=1
		ans+=cnt[1]
		bf.append(abs(cnt[0]-cnt[1]))
af.sort(reverse=True)
bf.sort(reverse=True)
while len(af)>X:
	ans-=af.pop()
while len(bf)>Y:
	ans-=bf.pop()
print(ans)
0