結果

問題 No.2042 RGB Caps
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2022-09-08 00:15:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 208,316 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 21:04:31
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
    int N, M;
    cin >> N >> M;
    string ans = "";
    string key = "RGB";
    for (int i = 0; i < N + 3 - N % 3; i ++) {
        ans += key[i % 3];
    }
    vector<pair<int, char>> A(M);
    for (auto& [a, c] : A) {
        cin >> a >> c;
    }
    sort(A.begin(), A.end());
    for (auto [a, c] : A) {
        a --;
        if (a % 3 == 0) {
            if (c == 'G') {
                swap(ans[a], ans[a+1]);
            } else if (c == 'B') {
                swap(ans[a], ans[a + 2]);
            }
        } else if (a % 3 == 1) {
            if (ans[a + 1] == c) {
                swap(ans[a], ans[a + 1]);
            }
        }
    }
    cout << ans.substr(0, N) << endl;
}
0