답안 #601616

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
601616 2022-07-22T08:40:12 Z CSQ31 Stranded Far From Home (BOI22_island) C++17
10 / 100
287 ms 62460 KB
//consider scc graph
//u -> v
//if u bad then v must be bad
//so every ingoing edge into v must be good and sum of sub(tree?graph?) must be >= minimal parent
//i dont even need scc,only scc is if all values are equal okay yes
#include <bits/stdc++.h>
using namespace std;
#define sz(a) (int)(a.size())
#define all(a) a.begin(),a.end()
#define pb push_back
#define owo ios_base::sync_with_stdio(0);cin.tie(0);
typedef long long int ll;
const int MAXN = 2e5+5;
int s[MAXN];
vector<int>adj[MAXN],group[MAXN];
vector<int>gr[MAXN],g[MAXN],ord;
int vis[MAXN],par[MAXN];

int find(int x){
	if(x==par[x])return x;
	return par[x] = find(par[x]);
}
void unite(int a,int b){
	a = find(a);
	b = find(b);
	if(a==b)return;
	par[a] = b;
}
void dfs(int v){
	vis[v] = 1;
	for(int x:g[v]){
		if(!vis[x])dfs(x);
	}
	ord.pb(v);
	
}
ll dp[MAXN];
int main()
{
	owo
	int n,m,mx = 0;
	cin>>n>>m;
	for(int i=0;i<n;i++){
		cin>>s[i];
		par[i] = i;
		mx = max(mx,s[i]);
	}
	for(int i=0;i<m;i++){
		int a,b;
		cin>>a>>b;
		a--;
		b--;
		if(s[a] > s[b])adj[a].pb(b);
		if(s[b] > s[a])adj[b].pb(a);
		if(s[a]==s[b])unite(a,b);
	}
	for(int i=0;i<n;i++)group[find(i)].pb(i);
	for(int i=0;i<n;i++){
		if(group[i].empty())continue;
		for(int v:group[i]){
			for(int y:adj[v]){
				int x = find(y);
				if(vis[x])continue;
				vis[x] = 1;
				g[i].pb(x);
				gr[x].pb(i);
			}
		}
		for(int v:group[i]){
			for(int x:adj[v]){
				vis[find(x)] = 0;
			}
		}
	}
	for(int i=0;i<n;i++){
		if(!group[i].empty() && !vis[i])dfs(i);
	}
	for(int v:ord){
		dp[v] = sz(group[v]) * 1LL * s[group[v][0]];
		for(int x:g[v])dp[v]+=dp[x];
	}
	vector<bool>good(n,0);
	vector<array<ll,2>>v;
	for(int i=0;i<n;i++){
		if(!group[i].empty())v.pb({-dp[i],i});
	}
	sort(all(v));
	for(auto x:v){
		ll val = -x[0];
		int u = x[1];
		if(val >= mx)good[u] = 1;
		for(int p:gr[u]){
			//cout<<p<<" ";
			if(good[p] && val >= s[group[p][0]])good[u] = 1;
		}
	}
	for(int i=0;i<n;i++)cout<<good[find(i)];
	
	
	
}
# 결과 실행 시간 메모리 Grader output
1 Correct 10 ms 19028 KB Output is correct
2 Correct 10 ms 19076 KB Output is correct
3 Correct 9 ms 19028 KB Output is correct
4 Incorrect 11 ms 19340 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 11 ms 19056 KB Output is correct
2 Correct 14 ms 19048 KB Output is correct
3 Correct 259 ms 52984 KB Output is correct
4 Correct 73 ms 22004 KB Output is correct
5 Correct 270 ms 47712 KB Output is correct
6 Correct 286 ms 48292 KB Output is correct
7 Correct 269 ms 48432 KB Output is correct
8 Correct 93 ms 21732 KB Output is correct
9 Correct 201 ms 46844 KB Output is correct
10 Correct 185 ms 42088 KB Output is correct
11 Correct 94 ms 22784 KB Output is correct
12 Correct 112 ms 26036 KB Output is correct
13 Correct 97 ms 21808 KB Output is correct
14 Correct 97 ms 21804 KB Output is correct
15 Correct 182 ms 62460 KB Output is correct
16 Correct 152 ms 61996 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 12 ms 19076 KB Output is correct
2 Incorrect 221 ms 46624 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 13 ms 19028 KB Output is correct
2 Incorrect 287 ms 44120 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 10 ms 19028 KB Output is correct
2 Correct 10 ms 19076 KB Output is correct
3 Correct 9 ms 19028 KB Output is correct
4 Incorrect 11 ms 19340 KB Output isn't correct
5 Halted 0 ms 0 KB -