結果

問題 No.2042 RGB Caps
ユーザー FromBooskaFromBooska
提出日時 2023-03-22 11:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 108,644 KB
最終ジャッジ日時 2024-09-18 14:50:41
合計ジャッジ時間 6,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 589 ms
102,992 KB
testcase_07 AC 201 ms
79,616 KB
testcase_08 AC 425 ms
90,160 KB
testcase_09 AC 101 ms
77,440 KB
testcase_10 AC 674 ms
106,136 KB
testcase_11 AC 140 ms
76,936 KB
testcase_12 AC 716 ms
108,388 KB
testcase_13 AC 687 ms
108,644 KB
testcase_14 AC 726 ms
108,512 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 176 ms
79,232 KB
testcase_17 AC 92 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# DFSは動いていたが、MLEとなった、まあそうだろうね
# 逆順で最低値で行けばいいのでは
# 入力例1なら at 5, [?, ?, 2]. at 3, [?, 1, ?], at 1 [1, 0, 0]
# つなぐのがうまくいかない
# 解説より
# 前からできるだけイーブンにしていく、そうすれば次のものに対応できる

N, K = map(int, input().split())
dic = {}
for i in range(K):
    a, c = map(str, input().split())
    if c == 'R':
        dic[int(a)] = 0
    elif c == 'G':
        dic[int(a)] = 1
    elif c == 'B':
        dic[int(a)] = 2

#print(dic)

RGB = [0, 0, 0]
ans = ''
for i in range(1, N+1):
    if i in dic:
        if RGB[dic[i]] == min(RGB):
            RGB[dic[i]] += 1
            ans += 'RGB'[dic[i]]
            #print(i, 'dic[i]', dic[i])
        else:
            mn_idx = RGB.index(min(RGB))
            RGB[mn_idx] += 1
            ans += 'RGB'[mn_idx]
            #print(i, 'mn_idx', mn_idx)
    else:
        mn_idx = RGB.index(min(RGB))
        RGB[mn_idx] += 1
        ans += 'RGB'[mn_idx]
        #print(i, 'mn_idx', mn_idx)
    #print(ans)
print(ans)
0