結果

問題 No.2623 Room Allocation
ユーザー PNJPNJ
提出日時 2024-02-09 21:54:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 80,200 KB
最終ジャッジ日時 2024-09-28 15:11:20
合計ジャッジ時間 4,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

def Map():
  return list(map(int,input().split()))

N,X,Y = Map()
Z = X + Y
C = [0 for i in range(min(Z,N))]
ans = 0
for i in range(N):
  j = i % Z
  P,c = map(str,input().split())
  P = int(P)
  if c == 'A':
    C[j] += P
  else:
    C[j] -= P
    ans += P
C.sort()
y = len(C)
x = 0
while y > Y:
  ans += C.pop()
  y -= 1
  x += 1
while x < X and len(C):
  if C[-1] > 0:
    ans += C.pop()
    y -= 1
    x += 1
  else:
    break
print(ans)
0