# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
968453 |
2024-04-23T12:40:59 Z |
hirayuu_oj |
Flood (IOI07_flood) |
C++17 |
|
48 ms |
16952 KB |
#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0; i<n; i++)
#define all(x) x.begin(),x.end()
using ll=long long;
int dir(pair<int,int> x,pair<int,int> y){
if(x.first==y.first){
if(x.second<y.second)return 0;
return 2;
}
if(x.first<y.first)return 1;
return 3;
}
int wall_ind(array<pair<int,int>,4> wall){
int cnt=0;
int pos=-1;
rep(i,4){
if(wall[i].first!=-1){
cnt++;
pos=i;
}
}
if(cnt==1)return pos;
return -1;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int N;
cin>>N;
vector<pair<int,int>> pnt(N);
rep(i,N){
cin>>pnt[i].first>>pnt[i].second;
}
vector<array<pair<int,int>,4>> gr(N,{pair(-1,-1),pair(-1,-1),pair(-1,-1),pair(-1,-1)});
int W;
cin>>W;
vector<pair<int,int>> wall(W);
rep(i,W){
cin>>wall[i].first>>wall[i].second;
wall[i].first--;
wall[i].second--;
gr[wall[i].first][dir(pnt[wall[i].first],pnt[wall[i].second])]=pair(i,wall[i].second);
gr[wall[i].second][dir(pnt[wall[i].second],pnt[wall[i].first])]=pair(i,wall[i].first);
}
vector<int> ans;
stack<int> del;
rep(i,N){
if(wall_ind(gr[i])!=-1){
del.push(i);
}
}
while(!del.empty()){
int pos=del.top();
del.pop();
if(wall_ind(gr[pos])==-1)continue;
int dir=wall_ind(gr[pos]);
ans.push_back(gr[pos][dir].first);
gr[gr[pos][dir].second][(dir+2)%4]={-1,-1};
if(wall_ind(gr[gr[pos][dir].second])!=-1){
del.push(gr[pos][dir].second);
}
gr[pos][dir]={-1,-1};
}
vector<array<int,4>> vert(N,{-1,-1,-1,-1});
int cnt=0;
rep(i,N){
rep(j,4){
if(gr[i][j].first==-1)continue;
if(vert[i][j]!=-1)continue;
int pos=i;
int dir=j;
while(vert[pos][dir]==-1){
vert[pos][dir]=cnt;
pos=gr[pos][dir].second;
dir=(dir+3)%4;
while(gr[pos][dir].first==-1){
dir++;
dir%=4;
}
}
cnt++;
}
}
vector<vector<int>> zag(cnt);
rep(i,W){
int s=vert[wall[i].first][dir(pnt[wall[i].first],pnt[wall[i].second])];
int t=vert[wall[i].second][dir(pnt[wall[i].second],pnt[wall[i].first])];
zag[s].push_back(t);
zag[t].push_back(s);
}
vector<pair<int,int>> order;
rep(i,W){
if(dir(pnt[wall[i].first],pnt[wall[i].second])==3){
order.push_back({pnt[wall[i].first].second,vert[wall[i].first][3]});
}
if(dir(pnt[wall[i].second],pnt[wall[i].first])==3){
order.push_back({pnt[wall[i].second].second,vert[wall[i].second][3]});
}
}
cout<<ans.size()<<"\n";
for(int i:ans)cout<<i+1<<"\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
348 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
2 ms |
604 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
9 ms |
3844 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
30 ms |
12368 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
36 ms |
16952 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
47 ms |
15192 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
48 ms |
16480 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |