結果

問題 No.2042 RGB Caps
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-09 00:51:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,008 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 122,432 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 06:10:19
合計ジャッジ時間 2,894 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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, now=0, M, A, R=0, G=0, B=0, x;
    char c;
    cin >> N >> K;
    vector<pair<int, char>> ac(K);
    for (int i=0; i<K; i++){
        cin >> A >> c; A--;
        ac[i] = {A, c};
    }
    sort(ac.begin(), ac.end());

    vector<char> ans(N, '.');
    queue<int> que;

    for (int i=0; i<K; i++){
        tie(A, c) = ac[i];
        while(now <= A){
            que.push(now);
            now++;
        }
        if (c == 'R'){
            M = max({G-R, B-R, (A-G-B-2*R+max(G, B)+2)/2});
            if (M < 0) M = 0;
            if (M > que.size()){
                cout << -1 << endl;
                return 0;
            }
            R += M;
            for (int j=0; j<M; j++){
                x = que.front();
                ans[x] = 'R';
                que.pop();
            }
        }
        if (c == 'G'){
            M = max({R-G, B-G, (A-R-B-2*G+max(R, B)+2)/2});
            if (M < 0) M = 0;
            if (M > que.size()){
                cout << -1 << endl;
                return 0;
            }
            G += M;
            for (int j=0; j<M; j++){
                x = que.front();
                ans[x] = 'G';
                que.pop();
            }
        }
        if (c == 'B'){
            M = max({G-B, R-B, (A-G-R-2*B+max(G, R)+2)/2});
            if (M < 0) M = 0;
            if (M > que.size()){
                cout << -1 << endl;
                return 0;
            }
            B += M;
            for (int j=0; j<M; j++){
                x = que.front();
                ans[x] = 'B';
                que.pop();
            }
        }
    }

    for (int i=0; i<N; i++){
        cout << (ans[i] == '.' ? ac[K-1].second : ans[i]);
    }
    cout << endl;

    return 0;
}
0