結果

問題 No.2623 Room Allocation
ユーザー flygonflygon
提出日時 2024-02-09 21:48:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,130 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 150,736 KB
最終ジャッジ日時 2024-09-28 15:03:37
合計ジャッジ時間 5,303 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,756 KB
testcase_01 AC 36 ms
55,772 KB
testcase_02 AC 35 ms
54,992 KB
testcase_03 AC 36 ms
55,712 KB
testcase_04 AC 39 ms
55,036 KB
testcase_05 AC 37 ms
56,500 KB
testcase_06 AC 168 ms
127,180 KB
testcase_07 AC 167 ms
127,848 KB
testcase_08 AC 174 ms
127,864 KB
testcase_09 AC 189 ms
127,872 KB
testcase_10 AC 37 ms
55,220 KB
testcase_11 AC 36 ms
55,204 KB
testcase_12 AC 35 ms
54,988 KB
testcase_13 AC 35 ms
55,144 KB
testcase_14 AC 213 ms
149,936 KB
testcase_15 AC 180 ms
130,204 KB
testcase_16 AC 79 ms
83,280 KB
testcase_17 AC 48 ms
68,964 KB
testcase_18 AC 174 ms
130,180 KB
testcase_19 AC 173 ms
125,256 KB
testcase_20 AC 179 ms
128,984 KB
testcase_21 AC 194 ms
130,148 KB
testcase_22 AC 137 ms
107,320 KB
testcase_23 AC 99 ms
91,848 KB
testcase_24 AC 179 ms
130,416 KB
testcase_25 AC 157 ms
119,912 KB
testcase_26 AC 63 ms
78,700 KB
testcase_27 AC 243 ms
150,452 KB
testcase_28 AC 124 ms
103,056 KB
testcase_29 AC 90 ms
86,124 KB
testcase_30 AC 240 ms
150,736 KB
testcase_31 AC 69 ms
80,012 KB
testcase_32 AC 67 ms
79,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,x,y = map(int,input().split())
cus = [list(map(str,input().split())) for i in range(n)]
all = [[0,0] for i in range(n)]
tot = 0 
for i in range(n):
    pi,ci = cus[i]
    pi = int(pi)
    tot += pi
    if ci == "A":
        all[i%(x+y)][0] += pi
    else:
        all[i%(x+y)][1] += pi
    
a = []
for i in range(min(x+y, n)):
    a.append(all[i][0] - all[i][1])

ans = 0
if n >= x+y:
    a.sort()
    for i in range(x):
        ans += a.pop()
    for i in range(y):
        ans -= a.pop()

else:
    aa = []
    bb = []
    for i in range(n):
        pi,ci = cus[i]
        if ci == "A":
            aa.append(int(pi))
        else:
            bb.append(int(pi))
    aa.sort()
    bb.sort()
    for i in range(min(len(aa), x)):
        ans += aa.pop()
    for i in range(min(len(bb), y)):
        ans += bb.pop()
    
    ans -= sum(aa)
    ans -= sum(bb)

    
        


print((ans+tot)//2)
        
0