結果

問題 No.2042 RGB Caps
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-10 01:11:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 110,152 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 19:18:07
合計ジャッジ時間 2,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 20 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 30 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 35 ms
5,376 KB
testcase_13 AC 34 ms
5,376 KB
testcase_14 AC 35 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    int N, K, A, w=('R'^'G'^'B');
    char cc;
    cin >> N >> K;
    vector<char> ans(N+1), c(N+1, 'R');
    for (int i=0; i<K; i++){
        cin >> A >> cc;
        c[A] = cc;
    }

    for (int i=1; i<=N; i++){
        if (i % 3 == 1) ans[i] = c[i];
        else if (i % 3 == 2){
            if (ans[i-1] != c[i]) ans[i] = c[i];
            else{
                if (c[i] == 'R') ans[i] = 'G';
                if (c[i] == 'G') ans[i] = 'B';
                if (c[i] == 'B') ans[i] = 'R';
            }
        }
        else ans[i] = w ^ ans[i-1] ^ ans[i-2];
    }

    for (int i=1; i<=N; i++) cout << ans[i];
    cout << endl;

    return 0;
}
0