/* Author : Mychecksdead */
#include<bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end()
#define pb push_back
const int N = 2e5 + 100;
struct Dsu{
vector<int> s, p;
vector<long long> sum;
Dsu(int n, int a[]){
s.resize(n + 1, 1);
p.resize(n + 1);
sum.resize(n + 1, 0ll);
for(int i = 0; i <= n; ++i) p[i] = i;
for(int i = 0; i <= n; ++i) sum[i] = a[i];
}
int find(int v){
if(v==p[v]) return v;
return p[v]=find(p[v]);
}
void merge(int a, int b){
a = find(a);
b = find(b);
if(a != b){
if(s[a] > s[b]) swap(a, b);
p[a] = b;
s[b] += s[a];
sum[b] += sum[a];
}
}
};
int n, m, a[N];
vector<int> g[N], compn[N];
vector<array<int, 3>> M;
vector<bool> vis, ans;
pair<int, int> b[N];
int main(){
cin.tie(0); ios::sync_with_stdio(0);
cin >> n >> m;
for(int i = 1; i <= n; ++i) cin >> a[i];
for(int i = 1; i <= n; ++i) b[i] = {a[i], i};
for(int i = 0; i < m; ++i){
int a, b; cin >> a >> b;
g[a].pb(b);
g[b].pb(a);
}
Dsu d(n, a);
sort(b + 1, b + 1 + n);
ans.resize(n + 1);
for(int i = 1; i <= n; ++i){
int v = b[i].second;
for(int u: g[v]){
if(a[u] <= a[v]){
if(d.sum[u] >= a[v]){
d.merge(u, v);
M.pb({u, v, 1});
}else{
d.merge(u, v);
M.pb({u, v, 0});
}
}
}
}
reverse(all(M));
for(int i = 1; i <= n; ++i) if(a[i] == b[n].first) ans[i] = 1;
for(auto P: M){
if(P[2]){
ans[P[0]] = ans[P[0]] | ans[P[1]];
}
}
for(int i = 1; i <= n; ++i) cout << ans[i];
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
9684 KB |
Output is correct |
2 |
Correct |
6 ms |
9736 KB |
Output is correct |
3 |
Correct |
7 ms |
9688 KB |
Output is correct |
4 |
Incorrect |
6 ms |
9812 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
9684 KB |
Output is correct |
2 |
Correct |
5 ms |
9732 KB |
Output is correct |
3 |
Incorrect |
133 ms |
29120 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
9732 KB |
Output is correct |
2 |
Incorrect |
173 ms |
28936 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
9732 KB |
Output is correct |
2 |
Incorrect |
174 ms |
29044 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
9684 KB |
Output is correct |
2 |
Correct |
6 ms |
9736 KB |
Output is correct |
3 |
Correct |
7 ms |
9688 KB |
Output is correct |
4 |
Incorrect |
6 ms |
9812 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |