結果

問題 No.2623 Room Allocation
ユーザー PNJPNJ
提出日時 2024-02-09 21:30:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-09-28 13:57:15
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 WA -
testcase_03 AC 38 ms
54,016 KB
testcase_04 AC 40 ms
53,888 KB
testcase_05 AC 38 ms
53,812 KB
testcase_06 WA -
testcase_07 AC 202 ms
81,104 KB
testcase_08 AC 202 ms
81,408 KB
testcase_09 AC 204 ms
81,216 KB
testcase_10 AC 41 ms
53,504 KB
testcase_11 AC 40 ms
54,016 KB
testcase_12 AC 40 ms
53,632 KB
testcase_13 AC 45 ms
53,632 KB
testcase_14 AC 181 ms
81,280 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 174 ms
81,152 KB
testcase_28 AC 108 ms
77,952 KB
testcase_29 AC 92 ms
76,672 KB
testcase_30 AC 180 ms
81,152 KB
testcase_31 AC 75 ms
76,544 KB
testcase_32 AC 76 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def Map():
  return list(map(int,input().split()))

N,X,Y = Map()
x = 0
y = 0
XX = deque()
YY = deque()
ans = 0
for i in range(N):
  P,c = map(str,input().split())
  P = int(P)
  cc = 1
  if c == 'A':
    if x < X:
      XX.append(i)
      x += 1
      ans += P
    elif y < Y:
      YY.append(i)
      y += 1
    else:
      if XX[0] < YY[0]:
        XX.popleft()
        XX.append(i)
        ans += P
      else:
        YY.popleft()
        YY.append(i)
  else:
    if y < Y:
      YY.append(i)
      y += 1
      ans += P
    elif x < X:
      XX.append(i)
      x += 1
    else:
      if YY[0] < XX[0]:
        YY.popleft()
        YY.append(i)
        ans += P
      else:
        XX.popleft()
        XX.append(i)
print(ans)
0