結果

問題 No.1328 alligachi-problem
ユーザー titiatitia
提出日時 2020-12-25 03:07:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,244 ms / 2,000 ms
コード長 1,528 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 80,652 KB
最終ジャッジ日時 2024-09-21 17:35:42
合計ジャッジ時間 26,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 28 ms
11,008 KB
testcase_03 AC 27 ms
11,008 KB
testcase_04 AC 37 ms
11,520 KB
testcase_05 AC 36 ms
11,520 KB
testcase_06 AC 36 ms
11,392 KB
testcase_07 AC 40 ms
11,520 KB
testcase_08 AC 31 ms
11,136 KB
testcase_09 AC 1,209 ms
80,380 KB
testcase_10 AC 897 ms
78,168 KB
testcase_11 AC 1,229 ms
80,528 KB
testcase_12 AC 1,224 ms
80,512 KB
testcase_13 AC 1,221 ms
80,528 KB
testcase_14 AC 1,242 ms
80,652 KB
testcase_15 AC 915 ms
78,296 KB
testcase_16 AC 1,209 ms
80,440 KB
testcase_17 AC 1,237 ms
80,652 KB
testcase_18 AC 1,227 ms
80,524 KB
testcase_19 AC 1,194 ms
80,380 KB
testcase_20 AC 1,244 ms
80,528 KB
testcase_21 AC 1,236 ms
80,380 KB
testcase_22 AC 1,220 ms
80,528 KB
testcase_23 AC 941 ms
78,232 KB
testcase_24 AC 1,028 ms
78,164 KB
testcase_25 AC 1,048 ms
78,164 KB
testcase_26 AC 1,046 ms
71,084 KB
testcase_27 AC 1,030 ms
71,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter

N=int(input())
S=[input().split() for i in range(N)]

for i in range(N):
    S[i][2]=int(S[i][2])

SB=[]
SR=[]

for i in range(N):
    if S[i][1]=="B":
        SB.append(S[i]+[i+1])
    else:
        SR.append(S[i]+[i+1])

SB.sort(key=itemgetter(0),reverse=True)
SB.sort(key=itemgetter(2))

SR.sort(key=itemgetter(0))
SR.sort(key=itemgetter(2))

#print(SB)
#print(SR)

SB.reverse()
SR.reverse()

B=0
R=0

ANS=[]

while SB or SR:
    if SB and SR:
        if SB[-1][2]==B and SB[-1][0]=="B":
            x=SB.pop()
            ANS.append(x[3])
            B+=1
            continue

        if SR[-1][2]==R and SR[-1][0]=="R":
            x=SR.pop()
            ANS.append(x[3])
            R+=1
            continue

        if SB[-1][2]==B and SB[-1][0]=="R" and SR[-1][2]!=R:
            x=SB.pop()
            ANS.append(x[3])
            R+=1
            continue

        if SR[-1][2]==R and SR[-1][0]=="B" and SB[-1][2]!=B:
            x=SR.pop()
            ANS.append(x[3])
            B+=1
            continue

    else:
        if SB and SB[-1][2]==B:
            x=SB.pop()
            ANS.append(x[3])
            if x[0]=="B":
                B+=1
            else:
                R+=1
            continue

        if SR and SR[-1][2]==R:
            x=SR.pop()
            ANS.append(x[3])
            if x[0]=="B":
                B+=1
            else:
                R+=1
            continue

    print("No")
    break

else:
    print("Yes")
    print(*ANS)
    
        
0