結果

問題 No.1328 alligachi-problem
ユーザー KudeKude
提出日時 2020-12-25 01:42:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 138,976 KB
最終ジャッジ日時 2024-09-21 17:23:34
合計ジャッジ時間 16,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 44 ms
52,552 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 88 ms
73,984 KB
testcase_05 AC 100 ms
77,344 KB
testcase_06 AC 79 ms
70,528 KB
testcase_07 AC 98 ms
77,056 KB
testcase_08 AC 60 ms
60,800 KB
testcase_09 AC 612 ms
135,464 KB
testcase_10 AC 468 ms
115,112 KB
testcase_11 AC 597 ms
138,452 KB
testcase_12 AC 599 ms
138,576 KB
testcase_13 AC 587 ms
138,180 KB
testcase_14 AC 615 ms
135,624 KB
testcase_15 AC 465 ms
115,264 KB
testcase_16 AC 616 ms
133,804 KB
testcase_17 AC 588 ms
138,752 KB
testcase_18 AC 597 ms
135,604 KB
testcase_19 AC 610 ms
134,320 KB
testcase_20 AC 613 ms
138,928 KB
testcase_21 AC 615 ms
138,976 KB
testcase_22 AC 594 ms
138,736 KB
testcase_23 AC 460 ms
115,520 KB
testcase_24 AC 506 ms
129,480 KB
testcase_25 AC 555 ms
129,320 KB
testcase_26 AC 396 ms
121,076 KB
testcase_27 AC 392 ms
121,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
rs = []
bs = []
for i in range(1, n + 1):
    c, x, y = input().split()
    y = int(y)
    if x == 'R':
        rs.append((i, c, y))
    else:
        bs.append((i, c, y))
rs.sort(key=lambda p: 2 * p[2] + (p[1] == 'R'))
bs.sort(key=lambda p: 2 * p[2] + (p[1] == 'B'))
ans = []
rcnt = bcnt = 0
j = 0
for i, c, y in rs:
    while j < len(bs) and bcnt == bs[j][2] and not rcnt + (bs[j][1] == 'R') > y:
        ans.append(bs[j][0])
        if bs[j][1] == 'R':
            rcnt += 1
        else:
            bcnt += 1
        j += 1
    if rcnt != y:
        print('No')
        exit()
    ans.append(i)
    if c == 'R':
        rcnt += 1
    else:
        bcnt += 1
while j < len(bs) and bcnt == bs[j][2]:
    ans.append(bs[j][0])
    if bs[j][1] == 'R':
        rcnt += 1
    else:
        bcnt += 1
    j += 1
if not j == len(bs):
    print('No')
    exit()
print('Yes')
print(*ans)
0