#include #include #include #include #include #include #include #include #include #include #include #include #include #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template vector> vec2d(int n, int m, T v){ return vector>(n, vector(m, v)); } template vector>> vec3d(int n, int m, int k, T v){ return vector>>(n, vector>(m, vector(k, v))); } template void print_vector(vector v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } int to_int(char c){ if(c == 'R') return 0; if(c == 'G') return 1; return 2; } const string RGB = "RGB"; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, k; cin >> n >> k; vector mx(n, -1); for(int i = 0; i < k; i++){ int a; char c; cin >> a >> c; a--; mx[a] = to_int(c); } string ans; vector cnt(3); for(int i = 0; i < n; i++){ for(int j = 0; j < 3; j++){ bool ok = true; auto cc = cnt; cc[j]++; for(int k = 0; k < 3; k++){ if(cc[j] > cc[k]+1){ ok = false; break; } if(mx[i] != -1){ if(cc[mx[i]] < cc[k]){ ok = false; break; } } } if(!ok) continue; ans += RGB[j]; cnt[j]++; break; } } cout << ans << endl; }