結果

問題 No.2042 RGB Caps
ユーザー rlangevinrlangevin
提出日時 2022-08-21 15:29:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 97,220 KB
最終ジャッジ日時 2024-11-16 02:01:22
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 128 ms
86,140 KB
testcase_07 AC 178 ms
81,664 KB
testcase_08 AC 292 ms
88,308 KB
testcase_09 AC 113 ms
77,440 KB
testcase_10 AC 408 ms
93,584 KB
testcase_11 AC 107 ms
78,112 KB
testcase_12 AC 448 ms
95,040 KB
testcase_13 AC 443 ms
94,912 KB
testcase_14 AC 454 ms
97,220 KB
testcase_15 AC 42 ms
57,600 KB
testcase_16 AC 165 ms
81,152 KB
testcase_17 AC 103 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N, K = map(int, readline().split())
D = [[10 ** 18, 0]]
for i in range(K):
    A, c = readline().split()
    if c == "R":
        n = 0
    elif c == "G":
        n = 1
    else:
        n = 2
    D.append([int(A), n])
D.sort(reverse=True)
color = [0] * 3
ans = []
hat = ["R", "G", "B"]
for i in range(N):
    if max(color) == min(color):
        ind = 0
    else:
        for j in range(3):
            if color[j] == min(color):
                ind = j
                break
    temp = [0] * 3
    for j in range(3):
        temp[j] = color[j]
    temp[ind] += 1
    if D[-1][0] != i + 1:
        ans.append(hat[ind])
        color[ind] += 1
    else:
        A, c = D[-1]
        D.pop()
        if temp[c] == max(temp):
            ans.append(hat[ind])
            color[ind] += 1
        else:
            ans.append(hat[c])
            color[c] += 1
print(*ans, sep="")
0