結果

問題 No.2623 Room Allocation
ユーザー poeMoonpoeMoon
提出日時 2024-02-11 15:27:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 125,336 KB
最終ジャッジ日時 2024-09-28 17:31:36
合計ジャッジ時間 5,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,208 KB
testcase_01 AC 34 ms
53,552 KB
testcase_02 AC 33 ms
52,720 KB
testcase_03 AC 31 ms
52,812 KB
testcase_04 AC 31 ms
52,140 KB
testcase_05 AC 32 ms
52,748 KB
testcase_06 AC 170 ms
87,428 KB
testcase_07 AC 166 ms
87,076 KB
testcase_08 AC 174 ms
86,980 KB
testcase_09 AC 166 ms
87,436 KB
testcase_10 AC 135 ms
120,584 KB
testcase_11 AC 133 ms
120,616 KB
testcase_12 AC 82 ms
94,576 KB
testcase_13 AC 81 ms
94,380 KB
testcase_14 AC 235 ms
125,336 KB
testcase_15 AC 133 ms
76,084 KB
testcase_16 AC 74 ms
76,140 KB
testcase_17 AC 53 ms
67,996 KB
testcase_18 AC 131 ms
76,648 KB
testcase_19 AC 132 ms
76,440 KB
testcase_20 AC 130 ms
76,280 KB
testcase_21 AC 130 ms
76,248 KB
testcase_22 AC 115 ms
76,224 KB
testcase_23 AC 97 ms
76,244 KB
testcase_24 AC 138 ms
76,428 KB
testcase_25 AC 118 ms
76,156 KB
testcase_26 AC 62 ms
76,240 KB
testcase_27 AC 404 ms
105,556 KB
testcase_28 AC 215 ms
103,836 KB
testcase_29 AC 141 ms
95,640 KB
testcase_30 AC 395 ms
101,560 KB
testcase_31 AC 88 ms
82,972 KB
testcase_32 AC 131 ms
102,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
r = X + Y
g = [[0, 0] for _ in range(r)]
m = ["A", "B"]
for i in range(N):
    P, c = input().split()
    P = int(P)
    g[i % r][m.index(c)] += P
g.sort(key=lambda gi: -abs(gi[0] - gi[1]))
ans = 0
for i in range(r):
    A, B = g[i][0], g[i][1]
    if A >= B:
        if X > 0:
            X -= 1
            ans += A
        else:
            Y -= 1
            ans += B
    else:
        if Y > 0:
            Y -= 1
            ans += B
        else:
            X -= 1
            ans += A
print(ans)
#print(*g)
0