結果

問題 No.2042 RGB Caps
ユーザー V_MelvilleV_Melville
提出日時 2022-08-19 23:47:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 5,259 ms
コンパイル使用メモリ 316,264 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 20:36:18
合計ジャッジ時間 6,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/extc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::string;

int main() {
    int n, k;
    cin >> n >> k;
    
    string s(n, 'R');
    rep(i, k) {
        int p; char c;
        cin >> p >> c;
        --p;
        s[p] = c;
    }
    
    rep(i, n) {
        if (i%3 == 1) {
            if (s[i] == s[i-1]) {
                if (s[i-1] == 'R') s[i] = 'G';
                else s[i] = 'R';
            }
        }
        if (i%3 == 2) {
            s[i] = 'R' ^ 'G' ^ 'B' ^ s[i-1] ^ s[i-2];
        }
    }
    
    cout << s << '\n'; 
    
    return 0;
}
0