Submission #631652

#TimeUsernameProblemLanguageResultExecution timeMemory
631652NintsiChkhaidzeOne-Way Streets (CEOI17_oneway)C++14
0 / 100
837 ms262144 KiB
#include <bits/stdc++.h> #define s second #define f first #define pb push_back using namespace std; const int N = 100005; int tin[N],low[N],a[N],b[N],ID[N],idx,cnt; vector <int> adj[N],vec[N],O[N],C[N]; set <int> open[N],close[N]; bool bridge[N],vis[N]; void dfs(int x,int par){ vis[x] = 1; tin[x] = low[x] = cnt++; for (int id: adj[x]){ int to = b[id]; if (to == x) to = a[id]; if (to == par) continue; if (vis[to]){ low[x] = min(low[x], tin[to]); }else{ dfs(to,x); low[x] = min(low[x], low[to]); if (low[to] > tin[x]) bridge[id] = 1; } } } void dfs1(int x){ ID[x] = idx; vis[x] = 1; for (int id: adj[x]){ int to = b[id]; if (to == x) to = a[id]; if (!vis[to] && !bridge[id]) dfs1(to); else if (!vis[to] && bridge[id]) vec[idx].pb(to); } } void fill(int x){ for (int y: O[x]){ if (close[x].find(y) == close[x].end()) open[x].insert(y); else close[x].erase(close[x].find(y)); } for (int y: C[x]){ if (open[x].find(y) == open[x].end()) close[x].insert(y); else open[x].erase(open[x].find(y)); } } void dfs2(int x,int par){ vis[x] = 1; fill(x); tin[x] = tin[par] + 1; for (int to: adj[x]){ if(to == par) continue; dfs2(to,x); for (int y: open[to]){ if (close[x].find(y) == close[x].end()) open[x].insert(y); else close[x].erase(close[x].find(y)); } for (int y: close[to]){ if (open[x].find(y) == open[x].end()) close[x].insert(y); else open[x].erase(open[x].find(y)); } } } int main (){ ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL); int n,m; cin>>n>>m; for (int i = 1; i <= m; i++){ cin>>a[i]>>b[i]; adj[a[i]].pb(i); adj[b[i]].pb(i); } for (int i= 1; i <= n; i++) if (!vis[i]) dfs(i,i); for (int i= 1; i <= n; i++) vis[i] = 0; idx = 0; for (int i = 1; i <= n; i++){ if (vis[i]) continue; idx++; dfs1(i); } for (int i = 1; i <= n; i++) adj[i].clear(); for (int i = 1; i <= n; i++) for (int x: vec[i]){ adj[i].pb(ID[x]); adj[ID[x]].pb(i); } int k; cin>>k; for (int i = 1; i <= k; i++){ int x,y; cin>>x>>y; O[ID[x]].pb(i); C[ID[y]].pb(i); } for (int i = 1; i <= n; i++) vis[i] = tin[i] = 0; for (int i = 1; i <= n; i++) if (!vis[i]) dfs2(i,i); for (int i = 1; i <= m; i++){ if (bridge[i] == 0) cout<<'B'; else{ int x = ID[a[i]],y = ID[b[i]],o,c; if (tin[x] > tin[y]){ o = open[x].size(),c = close[x].size(); if(o && !c) cout<<'R'; else if (!o && c) cout<<'L'; else cout<<'B'; }else{ o = open[y].size(),c = close[y].size(); if(o && !c) cout<<'L'; else if (!o && c) cout<<'R'; else cout<<'B'; } } } }

Compilation message (stderr)

oneway.cpp: In function 'int main()':
oneway.cpp:122:25: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  122 |         vis[i] = tin[i] = 0;
      |                  ~~~~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...