結果

問題 No.2623 Room Allocation
ユーザー hato336hato336
提出日時 2024-02-09 21:46:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 154,380 KB
最終ジャッジ日時 2024-09-28 15:00:57
合計ジャッジ時間 8,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
85,836 KB
testcase_01 AC 115 ms
85,644 KB
testcase_02 AC 113 ms
85,912 KB
testcase_03 AC 110 ms
85,768 KB
testcase_04 AC 107 ms
85,848 KB
testcase_05 AC 114 ms
85,720 KB
testcase_06 AC 233 ms
113,576 KB
testcase_07 AC 247 ms
111,892 KB
testcase_08 AC 246 ms
111,912 KB
testcase_09 AC 238 ms
112,168 KB
testcase_10 AC 244 ms
154,380 KB
testcase_11 AC 231 ms
154,244 KB
testcase_12 AC 142 ms
104,540 KB
testcase_13 AC 199 ms
121,224 KB
testcase_14 AC 364 ms
151,952 KB
testcase_15 AC 193 ms
99,276 KB
testcase_16 AC 143 ms
91,784 KB
testcase_17 AC 134 ms
90,048 KB
testcase_18 AC 189 ms
99,288 KB
testcase_19 AC 181 ms
99,148 KB
testcase_20 AC 187 ms
99,160 KB
testcase_21 AC 195 ms
99,284 KB
testcase_22 AC 199 ms
97,488 KB
testcase_23 AC 153 ms
94,160 KB
testcase_24 AC 197 ms
99,404 KB
testcase_25 AC 198 ms
97,976 KB
testcase_26 AC 147 ms
89,908 KB
testcase_27 AC 347 ms
140,408 KB
testcase_28 AC 254 ms
119,896 KB
testcase_29 AC 256 ms
118,816 KB
testcase_30 AC 327 ms
132,604 KB
testcase_31 AC 175 ms
100,060 KB
testcase_32 AC 259 ms
133,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
n,x,y = map(int,input().split())
ans = 0
alist = []
for i in range(n):
    p,c = input().split()
    p = int(p)
    alist.append((p,0) if c == 'A' else(p,1))
d = collections.deque()
dp = [[0,0] for i in range(x+y)]
for i in range(x+y):
    j = i
    while j < n:
        dp[i][alist[j][1]] += alist[j][0]
        j += x+y
h = []
ans = 0
for i in range(x+y):
    ans += dp[i][0]
    heapq.heappush(h,-(dp[i][1]-dp[i][0]))
for i in range(y):
    ans -= heapq.heappop(h)
print(ans)
0