結果

問題 No.1328 alligachi-problem
ユーザー chineristACchineristAC
提出日時 2020-12-25 00:37:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 1,069 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-09-21 17:15:12
合計ジャッジ時間 16,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 74 ms
71,168 KB
testcase_05 AC 76 ms
71,168 KB
testcase_06 AC 54 ms
63,232 KB
testcase_07 AC 79 ms
72,576 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 678 ms
105,600 KB
testcase_10 AC 560 ms
87,296 KB
testcase_11 AC 668 ms
106,880 KB
testcase_12 AC 674 ms
106,496 KB
testcase_13 AC 671 ms
105,856 KB
testcase_14 AC 676 ms
106,496 KB
testcase_15 AC 560 ms
88,064 KB
testcase_16 AC 684 ms
105,984 KB
testcase_17 AC 679 ms
106,240 KB
testcase_18 AC 686 ms
105,600 KB
testcase_19 AC 683 ms
105,600 KB
testcase_20 AC 685 ms
105,600 KB
testcase_21 AC 678 ms
105,984 KB
testcase_22 AC 688 ms
105,088 KB
testcase_23 AC 565 ms
87,424 KB
testcase_24 AC 653 ms
102,912 KB
testcase_25 AC 662 ms
102,640 KB
testcase_26 AC 459 ms
110,336 KB
testcase_27 AC 465 ms
110,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N = int(input())
dic = {"RR":[],"RB":[],"BR":[],"BB":[]}
for _ in range(N):
    c,x,y = input().split()
    y = int(y)
    dic[c+x].append((y,_+1))

for color in dic:
    dic[color].sort(reverse=True)

ans = []
R,B = 0,0
while len(ans)<N:
    if dic["BR"] and dic["BR"][-1][0]==R:
        if dic["RB"] and dic["RB"][-1][0]==B:
            exit(print("No"))
        elif dic["BB"] and dic["BB"][-1][0]==B:
            ans.append(dic["BB"].pop()[1])
            B += 1
        else:
            ans.append(dic["BR"].pop()[1])
            B += 1
    elif dic["RB"] and dic["RB"][-1][0]==B:
        if dic["RR"] and dic["RR"][-1][0]==R:
            ans.append(dic["RR"].pop()[1])
            R += 1
        else:
            ans.append(dic["RB"].pop()[1])
            R += 1
    elif dic["RR"] and dic["RR"][-1][0]==R:
        ans.append(dic["RR"].pop()[1])
        R += 1
    elif dic["BB"] and dic["BB"][-1][0]==B:
        ans.append(dic["BB"].pop()[1])
        B += 1
    else:
        exit(print("No"))

print("Yes")
print(*ans)
0