結果

問題 No.2042 RGB Caps
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-19 22:14:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 100,964 KB
最終ジャッジ日時 2024-11-16 01:57:06
合計ジャッジ時間 5,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,748 KB
testcase_01 AC 39 ms
52,676 KB
testcase_02 AC 39 ms
53,612 KB
testcase_03 AC 39 ms
52,512 KB
testcase_04 AC 39 ms
53,232 KB
testcase_05 AC 39 ms
53,572 KB
testcase_06 AC 114 ms
80,452 KB
testcase_07 AC 218 ms
83,832 KB
testcase_08 AC 366 ms
94,076 KB
testcase_09 AC 147 ms
79,524 KB
testcase_10 AC 507 ms
99,324 KB
testcase_11 AC 131 ms
78,732 KB
testcase_12 AC 547 ms
99,748 KB
testcase_13 AC 549 ms
100,964 KB
testcase_14 AC 551 ms
100,772 KB
testcase_15 AC 44 ms
58,524 KB
testcase_16 AC 197 ms
82,196 KB
testcase_17 AC 126 ms
78,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from cmath import inf


n,k = map(int,input().split())
ans = []
RGB = [0]*3

AC = []
for i in range(k):
    a,c = input().split()
    a = int(a)
    AC.append([a,c])
AC.sort()
l = "RGB"
now = 0
for i in range(1,n+1):
    
    target = 0
    ind = -1
    if now < k and AC[now][0] == i:
        c = AC[now][1]
        ind = l.index(c)

        if max(RGB) == RGB[ind]:
            if RGB.count(max(RGB)) == 3:
                target = ind
            else:
                for j in range(3):
                    if RGB[j] != max(RGB):
                        target = j
                        break

        else:
            target = ind


        now += 1
    else:
        for j in range(3):
            if RGB[j] != max(RGB):
                target = j
                break
    
    ans.append(target)
    RGB[target] += 1

    assert max(RGB)-min(RGB) <= 1

    if ind != -1 and max(RGB) != RGB[ind]:
        print(-1)
        exit()
        
ans = [l[i] for i in ans]
print("".join(ans))
0