結果

問題 No.1328 alligachi-problem
ユーザー tamatotamato
提出日時 2020-12-25 17:48:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 1,907 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 135,940 KB
最終ジャッジ日時 2024-09-22 10:51:17
合計ジャッジ時間 15,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,780 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 37 ms
52,652 KB
testcase_03 AC 38 ms
52,472 KB
testcase_04 AC 68 ms
71,568 KB
testcase_05 AC 67 ms
71,920 KB
testcase_06 AC 51 ms
65,064 KB
testcase_07 AC 68 ms
72,916 KB
testcase_08 AC 44 ms
59,616 KB
testcase_09 AC 568 ms
135,776 KB
testcase_10 AC 424 ms
111,200 KB
testcase_11 AC 559 ms
134,936 KB
testcase_12 AC 566 ms
135,184 KB
testcase_13 AC 553 ms
135,572 KB
testcase_14 AC 575 ms
135,244 KB
testcase_15 AC 461 ms
115,928 KB
testcase_16 AC 569 ms
135,504 KB
testcase_17 AC 561 ms
135,360 KB
testcase_18 AC 571 ms
135,520 KB
testcase_19 AC 581 ms
135,480 KB
testcase_20 AC 575 ms
135,940 KB
testcase_21 AC 563 ms
135,456 KB
testcase_22 AC 553 ms
134,804 KB
testcase_23 AC 426 ms
111,444 KB
testcase_24 AC 453 ms
127,340 KB
testcase_25 AC 524 ms
127,608 KB
testcase_26 AC 355 ms
125,836 KB
testcase_27 AC 357 ms
126,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    reqR = []
    reqB = []
    for i in range(1, N+1):
        C, X, Y = input().split()
        Y = int(Y)
        if X == "R":
            reqR.append((C, Y, i))
        else:
            reqB.append((C, Y, i))
    reqR.sort(key=lambda x: x[0])
    reqR.sort(key=lambda x: x[1])
    reqB.sort(key=lambda x: x[0], reverse=True)
    reqB.sort(key=lambda x: x[1])
    reqR.reverse()
    reqB.reverse()

    ans = []
    r = b = 0
    for _ in range(N):
        ok_r = 0
        ok_b = 0
        if reqR:
            if reqR[-1][1] == r:
                ok_r = 1
        if reqB:
            if reqB[-1][1] == b:
                ok_b = 1
        if ok_r == ok_b == 0:
            print("No")
            exit()
        if ok_r == 1 and ok_b == 0:
            c, _, i = reqR.pop()
            ans.append(i)
            if c == "R":
                r += 1
            else:
                b += 1
        elif ok_r == 0 and ok_b == 1:
            c, _, i = reqB.pop()
            ans.append(i)
            if c == "R":
                r += 1
            else:
                b += 1
        else:
            flg_r = flg_b = 0
            if reqR[-1][0] == "B":
                flg_r = 1
            if reqB[-1][0] == "R":
                flg_b = 1
            if flg_r == flg_b == 1:
                print("No")
                exit()
            if flg_r == 1:
                c, _, i = reqB.pop()
                ans.append(i)
                if c == "R":
                    r += 1
                else:
                    b += 1
            else:
                c, _, i = reqR.pop()
                ans.append(i)
                if c == "R":
                    r += 1
                else:
                    b += 1
    print("Yes")
    print(*ans)


if __name__ == '__main__':
    main()
0