#include<bits/stdc++.h>
using namespace std;
long long ar[200005];
vector<int>v[200005];
int vis[200005];
int n,m;
int check(int i){
for(int i=1;i<=n;i++){
vis[i]=0;
}
priority_queue<pair<long long,int>,vector<pair<long long,int> >,greater<pair<long long,int> > >pq;
pq.push({ar[i],i});
vis[i]=1;
long long power=0;
int hv=0;
while(!pq.empty()){
hv++;
long long np=pq.top().first;
int x=pq.top().second;
//cout<<x<<" "<<power<<endl;
pq.pop();
if(x==i||power>=np){
power+=np;
for(int j=0;j<v[x].size();j++){
if(vis[v[x][j]]==1){
continue;
}
vis[v[x][j]]=1;
pq.push({ar[v[x][j]],v[x][j]});
}
}else{
break;
}
}
if(hv==n){
return 1;
}else{
return 0;
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cin>>n>>m;
for(int i=1;i<=n;i++){
cin>>ar[i];
}
for(int i=1;i<=m;i++){
int a,b;
cin>>a>>b;
v[a].push_back(b);
v[b].push_back(a);
}
for(int i=1;i<=n;i++){
cout<<check(i);
}
}
Compilation message
island.cpp: In function 'int check(int)':
island.cpp:24:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int j=0;j<v[x].size();j++){
| ~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
4948 KB |
Output is correct |
2 |
Correct |
2 ms |
4948 KB |
Output is correct |
3 |
Correct |
2 ms |
4948 KB |
Output is correct |
4 |
Correct |
162 ms |
5104 KB |
Output is correct |
5 |
Correct |
139 ms |
5076 KB |
Output is correct |
6 |
Correct |
223 ms |
5092 KB |
Output is correct |
7 |
Correct |
148 ms |
5096 KB |
Output is correct |
8 |
Correct |
105 ms |
5196 KB |
Output is correct |
9 |
Incorrect |
208 ms |
5132 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
4948 KB |
Output is correct |
2 |
Correct |
2 ms |
4948 KB |
Output is correct |
3 |
Execution timed out |
1082 ms |
14612 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
4948 KB |
Output is correct |
2 |
Execution timed out |
1083 ms |
13680 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
4948 KB |
Output is correct |
2 |
Execution timed out |
1066 ms |
13904 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
4948 KB |
Output is correct |
2 |
Correct |
2 ms |
4948 KB |
Output is correct |
3 |
Correct |
2 ms |
4948 KB |
Output is correct |
4 |
Correct |
162 ms |
5104 KB |
Output is correct |
5 |
Correct |
139 ms |
5076 KB |
Output is correct |
6 |
Correct |
223 ms |
5092 KB |
Output is correct |
7 |
Correct |
148 ms |
5096 KB |
Output is correct |
8 |
Correct |
105 ms |
5196 KB |
Output is correct |
9 |
Incorrect |
208 ms |
5132 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |