結果

問題 No.2042 RGB Caps
ユーザー みここみここ
提出日時 2022-12-13 23:26:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 79,044 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 06:46:12
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 23 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 34 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 38 ms
5,376 KB
testcase_13 AC 38 ms
5,376 KB
testcase_14 AC 37 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <map>
using namespace std;

int main()
{
    int n, k;
    cin >> n >> k;
    char c[200005];
    for (int i = 0; i < n; i++)
    {
        c[i] = '.';
    }
    for (int i = 0; i < k; i++)
    {
        int a;
        cin >> a;
        a--;
        cin >> c[a];
    }
    string BRG = "BRG";
    string ans;
    int d = 0;
    for (int i = 0; i < n; i++)
    {
        if (i % 3 == 0)
        {
            d = 0;
        }
        if (c[i] == '.' || ((d >> ((int)c[i] % 3))) & 1)
        {
            for (int j = 0; j < 3; j++)
            {
                if (!((d >> j) & 1))
                {
                    ans += BRG[j];
                    d ^= 1 << j;
                    break;
                }
            }
        }
        else
        {
            d ^= 1 << ((int)c[i] % 3);
            ans += BRG[(int)c[i] % 3];
        }
    }
    cout << ans << endl;
}
0