Submission #416594

#TimeUsernameProblemLanguageResultExecution timeMemory
416594yanireToy Train (IOI17_train)C++11
0 / 100
1118 ms1532 KiB
#include <bits/stdc++.h> using namespace std; #include "train.h" #define fin(i,s,n) for(auto i = s; i < n; ++i) #define fine(i,s,n) for(auto i = s; i <= n; ++i) #define pb push_back #define eb emplace_back #define x first #define y second #define all(x) (x).begin(),(x).end() #define chkmin(a,b) a = min(a,b) #define chkmax(a,b) a = max(a,b) using stdvec = vector<int>; using ii = pair<int,int>; using vi = vector<int>; using vvi = vector<vi>; using vii = vector<ii>; #define sz(a) int((a).size()) const int maxn = 5005; vi G[maxn],T[maxn],g[maxn]; bool vis[maxn]; int id[maxn],c[maxn],p[maxn]; vi lst; void dfs(int u) { if(vis[u]) return; vis[u] = 1; for(int v : G[u]) dfs(v); lst.pb(u); } void mark(int u, int cid) { if(!vis[u]) return; vis[u] = 0,id[u] = cid; for(int v : T[u]) mark(v,cid); } bool bdfs(int u) { // cout << "bdfs("<<u<<") called\n"; if(c[u]) return /*cout << "cu 1\n",*/1; if(vis[u]) return /*cout << "already been here\n",*/0; vis[u] = 1; int cnt = 0; for(int v : g[u]) { if(u==v)return /*cout<<"self loop, bdfs("<<u<<") returns 0\n",*/0; cnt += bdfs(v); } // cout << "at "<<u<<",cnt="<<cnt<<",sz(g)="<<sz(g[u])<<endl; if(cnt==sz(g[u])) return 1; return 0; } vi who_wins(vi a, vi r, vi u, vi v) { int n = a.size(),m = u.size(); fin(i,0,m) g[u[i]].pb(v[i]); fin(i,0,n) p[i]=a[i],c[i]=r[i]; /*fin(i,0,m) G[u[i]].pb(v[i]),T[v[i]].pb(u[i]); fin(i,0,n) p[i] = a[i]; lst.clear(); fin(i,0,n) dfs(i); int lid = 0; reverse(all(lst)); fin(i,0,n) if(vis[lst[i]]) mark(lst[i],lid++); fin(i,0,n) c[id[i]] |= r[i]; vi deg(n,0); fin(i,0,m) if(id[u[i]]!=id[v[i]]) g[id[v[i]]].pb(id[u[i]]),++deg[id[u[i]]]; queue<int> q; fin(i,0,n) if(!deg[i]) q.push(i); while(!q.empty()) { int cu = q.front(); q.pop(); for(int nv : g[cu]) { c[nv] |= c[cu]; if(--deg[nv]==0) q.push(nv); } }*/ vi res(n); fin(i,0,n) { // res[i] = c[id[i]]; memset(vis,0,sizeof vis); // cout << "TESTING " << i << endl; res[i] = bdfs(i); } return res; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...