結果
問題 | No.2042 RGB Caps |
ユーザー | 鴨志田卓 |
提出日時 | 2023-02-22 16:07:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 47 ms / 2,000 ms |
コード長 | 999 bytes |
コンパイル時間 | 1,908 ms |
コンパイル使用メモリ | 170,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 17:41:01 |
合計ジャッジ時間 | 4,039 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 41 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 46 ms
5,376 KB |
testcase_13 | AC | 46 ms
5,376 KB |
testcase_14 | AC | 47 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 12 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:37:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 37 | auto [x, c] = a[i]; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; using pic = pair<int, char>; const int N = 1e5 + 10; int n, k; pic a[N]; char ans[N]; int cnt[256]; char minc() { for(char c : {'R', 'G', 'B'}) { bool ok = true; for(char v : {'R', 'G', 'B'}) if(cnt[c] > cnt[v]) { ok = false; break; } if(ok) return c; } return 'r'; } int main() { cin >> n >> k; for(int i = 1; i <= k; i ++) { cin >> a[i].first >> a[i].second; } for(int i = 1; i <= n; i ++) ans[i] = 'R'; sort(a + 1, a + k + 1); for(int i = 1, cur = 1; i <= k; i ++) { auto [x, c] = a[i]; while(cur < x) ans[cur ++] = minc(), cnt[minc()] ++; if(cnt[c] < cnt['R'] || cnt[c] < cnt['G'] || cnt[c] < cnt['B'] || (cnt['R'] == cnt['G'] && cnt['G'] == cnt['B'])) ans[cur ++] = c, cnt[c] ++; else ans[cur ++] = minc(), cnt[minc()] ++; } cout << ans + 1; }