結果
問題 |
No.3056 Disconnected Coloring
|
ユーザー |
|
提出日時 | 2025-03-14 22:20:36 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,478 bytes |
コンパイル時間 | 2,486 ms |
コンパイル使用メモリ | 209,288 KB |
実行使用メモリ | 20,592 KB |
最終ジャッジ日時 | 2025-03-14 22:20:45 |
合計ジャッジ時間 | 8,491 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 WA * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define all(v) v.begin(),v.end() #define resort(v) sort(v.rbegin(),v.rend()) using ll = long long; using ull = unsigned long long; using vll=vector<ll>; using vvll = vector<vector<ll>>; using P = pair<ll,ll>; using vp=vector<pair<ll, ll>>; const ll inf=1ll<<60; #define mod10 (ll)1e9+7 #define mod99 (ll)998244353 const double PI = acos(-1); #define rep(i,n) for (ll i=0;i<n;++i) #define per(i,n) for(ll i=n-1;i>=0;--i) #define rep2(i,a,n) for (ll i=a;i<n;++i) #define per2(i,a,n) for (ll i=n-1;i>=a;--i) template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } ll dx[] = {1, 0, -1, 0, -1, 1, -1, 1}; ll dy[] = {0, 1, 0, -1, -1, 1, 1, -1}; void solve() { int n, m; cin >> n >> m; vp e(m); ll u, v; rep(i, m) { cin >> u >> v; u--; v--; e[i] = {u, v}; } if(m%2==1) { cout << "-1\n"; return; } vvll g(n); for(auto[u, v]: e) { g[u].push_back(v); g[v].push_back(u); if(u==0&&v==n-1) { cout << "-1\n"; return; } } vector<bool> seen(n, false); vector<bool> itrvl(n, false); itrvl[n-1] = true; seen[0] = true; stack<ll> stk; stk.push(0); while(!stk.empty()) { ll p = stk.top(); stk.pop(); for(ll ni: g[p]) { if(itrvl[ni]) { itrvl[p] = true; } else if(!seen[ni]) { seen[ni] = true; stk.push(ni); } } } vector<char> ans(m, '@'); ll cnt_b = 0; ll cnt_r = 0; rep(i, m) { auto [u, v] = e[i]; if(u==0 && seen[v]) { cnt_b += 1; ans[i] = 'B'; } else if(seen[u] && v == n-1) { cnt_r += 1; ans[i] = 'R'; } } if(cnt_b>m/2 || cnt_r>m/2) { cout << "-1\n"; return; } else { rep(i, m) { if(ans[i] == '@') { if(cnt_b < m/2) { ans[i] ='B'; cnt_b += 1; } else ans[i] = 'R'; } } rep(i, m) { cout << ans[i]; } cout << '\n'; } } int main() { cin.tie(0); ios::sync_with_stdio(false); int t=1; //cin >> t; while(t--)solve(); }