結果

問題 No.2623 Room Allocation
ユーザー nikoro256nikoro256
提出日時 2024-02-09 21:55:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,615 ms / 2,000 ms
コード長 973 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 214,688 KB
最終ジャッジ日時 2024-09-28 15:11:51
合計ジャッジ時間 9,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,316 KB
testcase_01 AC 36 ms
53,072 KB
testcase_02 AC 37 ms
53,852 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 35 ms
53,100 KB
testcase_05 AC 33 ms
52,836 KB
testcase_06 AC 365 ms
146,624 KB
testcase_07 AC 355 ms
146,760 KB
testcase_08 AC 356 ms
146,628 KB
testcase_09 AC 354 ms
146,632 KB
testcase_10 AC 83 ms
99,188 KB
testcase_11 AC 83 ms
99,104 KB
testcase_12 AC 76 ms
95,760 KB
testcase_13 AC 73 ms
95,720 KB
testcase_14 AC 598 ms
212,340 KB
testcase_15 AC 192 ms
117,964 KB
testcase_16 AC 83 ms
84,220 KB
testcase_17 AC 49 ms
66,524 KB
testcase_18 AC 192 ms
117,836 KB
testcase_19 AC 179 ms
115,660 KB
testcase_20 AC 186 ms
117,200 KB
testcase_21 AC 189 ms
117,704 KB
testcase_22 AC 145 ms
106,336 KB
testcase_23 AC 112 ms
92,732 KB
testcase_24 AC 193 ms
117,584 KB
testcase_25 AC 170 ms
108,740 KB
testcase_26 AC 63 ms
78,416 KB
testcase_27 AC 1,609 ms
214,688 KB
testcase_28 AC 522 ms
126,028 KB
testcase_29 AC 265 ms
108,712 KB
testcase_30 AC 1,615 ms
191,620 KB
testcase_31 AC 118 ms
82,712 KB
testcase_32 AC 155 ms
107,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
N,X,Y=map(int,input().split())
dat=[]
for _ in range(N):
    dat.append(list(map(str,input().split())))
point=[[0,0] for _ in range(X+Y)]
for i in range(N):
    p,c=dat[i]
    p=int(p)
    if c=='A':
        point[i%(X+Y)][0]+=p
    else:
        point[i%(X+Y)][1]+=p
lis=[]
for i in range(X+Y):
    if point[i]!=[0,0]:
        lis.append([-point[i][0]+point[i][1],i,'A'])
        lis.append([-point[i][1]+point[i][0],i,'B'])
lis.sort()
ans=['']*(X+Y)
countA,countB=X,Y
for sub,i,c in lis:
    if ans[i]=='':
        if c=='A':
            if countA>0:
                ans[i]='A'
                countA-=1
            else:
                ans[i]='B'
                countB-=1
        if c=='B':
            if countB>0:
                ans[i]='B'
                countB-=1
            else:
                ans[i]='A'
                countA-=1
fa=0
for i in range(N):
    if ans[i%(X+Y)]==dat[i][1]:
        fa+=int(dat[i][0])
print(fa)
0