이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll INF = 1e9;
ll MOD = 998244353;
typedef pair<ll,ll> ii;
#define iii pair<int,int>
#define f(i,a,b) for(ll i = a;i < b;i++)
#define pb push_back
#define vll vector<ll>
#define F first
#define S second
#define all(x) (x).begin(), (x).end()
///I hope I will get uprating and don't make mistakes
///I will never stop programming
///sqrt(-1) Love C++
///Please don't hack me
///@TheofanisOrfanou Theo830
///Think different approaches (bs,dp,greedy,graphs,shortest paths,mst)
///Stay Calm
///Look for special cases
///Beware of overflow and array bounds
///Think the problem backwards
///Training
#include "train.h"
ll comp[5005];
bool v[5005] = {0};
ll posoi[5005] = {0};
vector<vll>adj;
vll nodes;
vll epia;
void solve(ll idx,bool V){
if(V){
nodes.pb(idx);
}
else{
epia.pb(idx);
}
for(auto x:adj[idx]){
if(!v[x]){
v[x] = 1;
solve(x,V);
}
}
}vector<vll>adj2;
void dfs(ll idx){
v[idx] = 1;
for(auto x:adj2[idx]){
if(!v[x]){
dfs(x);
}
}
}
vector<int> who_wins(std::vector<int> a, std::vector<int> r, std::vector<int> u, std::vector<int> v) {
vector<int> res(a.size());
ll n = a.size();
ll m = u.size();
adj.assign(n+5,vll());
f(i,0,m){
adj[u[i]].pb(v[i]);
}
f(i,0,n){
if(!v[i]){
v[i] = 1;
solve(i,1);
}
}
reverse(all(nodes));
f(j,0,n){
v[j] = 0;
}
for(auto x:nodes){
if(!v[x]){
v[x] = 1;
epia.clear();
solve(x,0);
for(auto y:epia){
comp[y] = x;
}
}
}
bool ok[n] = {0};
bool self[n] = {0};
f(i,0,n){
posoi[comp[i]]++;
ok[comp[i]] |= r[i];
for(auto x:adj[i]){
adj[comp[i]].pb(comp[x]);
if(x == i){
self[comp[i]] = 1;
}
}
}
f(i,0,n){
f(j,0,n){
v[j] = 0;
}
if(posoi[comp[i]] == 1){
dfs(comp[i]);
}
res[i] = 0;
f(j,0,n){
if((v[j] && ok[j]) && (posoi[j] > 1 || self[j])){
res[i] = 1;
}
}
}
return res;
}
/*
int main(){
int n, m;
assert(2 == scanf("%d %d", &n, &m));
vector<int> a(n), r(n), u(m), v(m);
for(int i = 0; i < n; i++)
assert(1 == scanf("%d", &a[i]));
for(int i = 0; i < n; i++)
assert(1 == scanf("%d", &r[i]));
for(int i = 0; i < m; i++)
assert(2 == scanf("%d %d", &u[i], &v[i]));
vector<int> res = who_wins(a, r, u, v);
for(int i = 0; i < (int)res.size(); i++)
printf(i ? " %d" : "%d", res[i]);
printf("\n");
return 0;
}
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |