# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
57218 |
2018-07-14T09:46:58 Z |
Crown |
Toy Train (IOI17_train) |
C++14 |
|
0 ms |
0 KB |
#include "train.h"
#include <bits/stdc++.h>
using namespace std;
#define X first
#define Y second
#define pb push_back
typedef long long ll;
typedef pair<int, int> ii;
const int maxn = 5005;
int out[maxn];
int inq[maxn];
int proc[maxn];
int Who_wins[maxn];
bool vis[maxn];
vector<int> A;
vector<int> R;
vector<int> adj[maxn];
vector<int> rev[maxn];
vector<int> bic[maxn];
vector<int> U, V;
int n, m;
vector<int> f(int is_a, vector<int> &all, vector<int> &s)
{
for(auto u : all)
{
inq[u] = 0;
out[u] = 0;
for(auto v : adj[u])
{
if(!proc[v]) out[u]++;
}
}
queue<int> q;
for(auto u : s)
{
inq[u] = true;
q.push(u);
}
vector<int> res = s;
while(!q.empty())
{
int u = q.front(); q.pop();
for(auto v : rev[u])
{
if(inq[v] || proc[v]) continue;
out[v]--;
if(A[v] == is_a)
{
inq[v] = true;
res.pb(v);
q.push(v);
}
else if(out[v] == 0)
{
inq[v] = true;
res.pb(v);
q.push(v);
}
}
}
return res;
}
void dfs(int u, vector<int> &all, vector<int> &charge)
{
all.pb(u);
if(R[u]) charge.pb(u);
for(auto v : bic[u])
if(!vis[v] && !proc[v])
{
vis[v] = true;
dfs(v, all, charge);
}
}
vector<int> who_wins(vector<int> a, vector<int> r, vector<int> _U, vector<int> _V)
{
A = a; R = r;
n = a.size(), m = _U.size();
for(int i = 0; i< m; i++)
{
int u = _U[i], v = _V[i];
adj[u].pb(v); rev[v].pb(u);
bic[u].pb(v); bic[v].pb(u);
}
queue< pair<vector<int>, vector<int> > > Q;
for(int i = 0; i< n; i++)
{
if(vis[i]) continue;
vis[i] = true;
vector<int> all, charge;
dfs(i, all, charge);
Q.push(make_pair(all, charge));
}
while(!Q.empty())
{
vector<int> all = Q.front().X, charge = Q.front().Y; Q.pop();
// for(auto u : all) printf("%d ", u); printf("\n");
// for(auto u : charge) printf("c%d ", u); printf("\n");
vector<int> f_a = f(1, all, charge);
vector<int> x;
sort(f_a.begin(), f_a.end());
for(auto u : all)
{
if(!binary_search(f_a.begin(), f_a.end(), u)) x.pb(u);
}
if(x.empty())
{
for(auto u : all) proc[u] = true;
for(auto u : all) Who_wins[u] = true;
continue;
vector<int> f_b = f(0, all, x);
for(auto u : f_b)
{
proc[u] = 1;
}
for(auto u : all) vis[u] = false;
for(auto u : all)
{
if(vis[u] || proc[u]) continue;
vis[u] = true;
vector<int> All, Charge;
dfs(u, All, Charge);
//for(auto u : All) printf("**%d ", u); printf("\n");
//for(auto u : Charge) printf("***%d ", u); printf("\n");
sort(All.begin(), All.end());
All.resize(unique(All.begin(), All.end())-All.begin());
Q.push(make_pair(All, Charge));
}
}
vector<int> res(n);
for(int i = 0; i< n; i++) res[i] = Who_wins[i];
return res;
}
Compilation message
train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:139:1: error: expected '}' at end of input
}
^
train.cpp:139:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^