結果

問題 No.2623 Room Allocation
ユーザー H20H20
提出日時 2024-02-09 22:36:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 181,352 KB
最終ジャッジ日時 2024-09-28 15:48:25
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,996 KB
testcase_01 AC 33 ms
52,964 KB
testcase_02 AC 36 ms
52,128 KB
testcase_03 AC 35 ms
52,524 KB
testcase_04 AC 33 ms
52,672 KB
testcase_05 AC 36 ms
54,180 KB
testcase_06 AC 214 ms
116,824 KB
testcase_07 AC 205 ms
117,216 KB
testcase_08 AC 212 ms
117,204 KB
testcase_09 AC 217 ms
117,256 KB
testcase_10 AC 105 ms
127,932 KB
testcase_11 AC 102 ms
128,308 KB
testcase_12 AC 87 ms
109,428 KB
testcase_13 AC 89 ms
109,616 KB
testcase_14 AC 305 ms
181,352 KB
testcase_15 AC 193 ms
108,380 KB
testcase_16 AC 96 ms
84,496 KB
testcase_17 AC 56 ms
67,728 KB
testcase_18 AC 209 ms
108,224 KB
testcase_19 AC 203 ms
108,308 KB
testcase_20 AC 207 ms
108,096 KB
testcase_21 AC 206 ms
108,108 KB
testcase_22 AC 168 ms
102,256 KB
testcase_23 AC 126 ms
90,420 KB
testcase_24 AC 208 ms
108,432 KB
testcase_25 AC 178 ms
102,392 KB
testcase_26 AC 71 ms
78,720 KB
testcase_27 AC 312 ms
165,680 KB
testcase_28 AC 168 ms
115,356 KB
testcase_29 AC 131 ms
109,468 KB
testcase_30 AC 308 ms
155,392 KB
testcase_31 AC 92 ms
86,200 KB
testcase_32 AC 142 ms
125,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y = map(int, input().split())
PC = [input().split() for _ in range(N)]
L = [[0]*2 for _ in range(X+Y)]
for i,pc in enumerate(PC):
    p,c=int(pc[0]),pc[1]
    L[i%(X+Y)][c=='B']+=p
ans = 0
DIFF = []
for a,b in L:
    DIFF.append(a-b)
    ans+=min(a,b)
DIFF.sort(reverse=True)
for a in DIFF[:X]:
    ans+=max(0,a)
for b in DIFF[X:]:
    ans+=max(0,-b)
print(ans)
0