結果

問題 No.2042 RGB Caps
ユーザー t98slidert98slider
提出日時 2022-08-24 05:05:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,142 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 181,280 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 20:38:00
合計ジャッジ時間 3,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    int n, k, p;
    char c;
    cin >> n >> k;
    vector<vector<pair<int,char>>> tb(3);
    for(int i = 0; i < k; i++){
        cin >> p >> c;
        p--;
        tb[p % 3].emplace_back(p, c);
    }
    string ans(n, '?');
    for(int i = 0; i < tb[0].size(); i++){
        tie(p, c) = tb[0][i];
        if(ans[p] != '?'){
            cout << -1 << '\n';
            continue;
        }
        ans[p] = c;
    }
    for(int i = 0; i < tb[1].size(); i++){
        tie(p, c) = tb[1][i];
        if(ans[p - 1] == c)continue;
        if(ans[p] == c)continue;
        if(ans[p - 1] == '?')ans[p - 1] = c;
        else if(ans[p] == '?')ans[p] = c;
        else{
            cout << -1 << '\n';
            return 0;
        }
    }
    for(int i = 0; i < n; i += 3){
        set<char> S{'R','G','B'};
        for(int j = 0; j < 2; j++){
            if(ans[i + j] != '?')S.erase(ans[i + j]);
        }
        int j = i + 2;
        while(!S.empty()){
            ans[j--] = *S.rbegin();
            S.erase(*S.rbegin());
        }
    }
    cout << ans << endl;
}
0