#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/rope>
#define ll long long
#define pb push_back
#define sz(x) (int)(x).size()
#define mp make_pair
#define f first
#define s second
#define all(x) x.begin(), x.end()
#define D(x) cerr << #x << " is " << (x) << "\n";
using namespace std;
using namespace __gnu_pbds;
using namespace __gnu_cxx;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
template<class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag,tree_order_statistics_node_update>; ///find_by_order(),order_of_key()
template<class T1, class T2> ostream& operator<<(ostream& os, const pair<T1,T2>& a) { os << '{' << a.f << ", " << a.s << '}'; return os; }
template<class T> ostream& operator<<(ostream& os, const vector<T>& a){os << '{';for(int i=0;i<sz(a);i++){if(i>0&&i<sz(a))os << ", ";os << a[i];}os<<'}';return os;}
template<class T> ostream& operator<<(ostream& os, const set<T>& a) {os << '{';int i=0;for(auto p:a){if(i>0&&i<sz(a))os << ", ";os << p;i++;}os << '}';return os;}
template<class T> ostream& operator<<(ostream& os, const multiset<T>& a) {os << '{';int i=0;for(auto p:a){if(i>0&&i<sz(a))os << ", ";os << p;i++;}os << '}';return os;}
template<class T1,class T2> ostream& operator<<(ostream& os, const map<T1,T2>& a) {os << '{';int i=0;for(auto p:a){if(i>0&&i<sz(a))os << ", ";os << p;i++;}os << '}';return os;}
const int N=1e5;
vector<vector<pair<int,int> > > nxt(N,vector<pair<int,int> >(4,{-1,-1}));
vector<pair<pair<int,int>,int> > nodes;
vector<pair<int,pair<int,int> > > walls(1);
vector<int> ans,trwalls;
int start;
bool dfs(int tr,int dir)
{
if(tr==start&&dir!=4)
return true;
for(int k=0;k<4;k++)
{
int l=(dir+1-k+4)%4;
int sl=nxt[tr][l].f;
if(sl==-1)
continue;
trwalls.pb(nxt[tr][l].s);
nxt[tr][l]={-1,-1};
if(dfs(sl,l))
return true;
}
return false;
}
void doit(int tr)
{
start=tr;
dfs(tr,4);
sort(all(trwalls));
trwalls.pb(-1);
for(int i=0,n=trwalls.size()-1;i<n;i++)
{
if(trwalls[i]==trwalls[i+1])
{
ans.pb(trwalls[i]);
i++;
continue;
}
nxt[walls[trwalls[i]].s.f][walls[trwalls[i]].f]={-1,-1};
nxt[walls[trwalls[i]].s.s][walls[trwalls[i]].f+2]={-1,-1};
}
trwalls.clear();
}
int main()
{
//freopen("flood.in.14b","r",stdin);
//freopen("in.txt","r",stdin);
int n;
scanf("%i",&n);
nodes.resize(n);
for(int i=0;i<n;i++)
scanf("%i %i",&nodes[i].f.f,&nodes[i].f.s),nodes[i].s=i;
int w;
scanf("%i",&w);
for(int i=1;i<=w;i++)
{
int a,b;
scanf("%i %i",&a,&b);
a--;b--;
if(nodes[a].f.f==nodes[b].f.f)
{
if(nodes[a].f.s>nodes[b].f.s)
swap(a,b);
walls.pb({0,{a,b}});
nxt[a][0]={b,i};
nxt[b][2]={a,i};
}
else
{
if(nodes[a].f.f>nodes[b].f.f)
swap(a,b);
walls.pb({1,{a,b}});
nxt[a][1]={b,i};
nxt[b][3]={a,i};
}
}
sort(nodes.rbegin(),nodes.rend());
for(auto p:nodes)
for(int i=0;i<2;i++)
doit(p.s);
printf("%i\n",ans.size());
for(auto p:ans)
printf("%i\n",p);
return 0;
}
Compilation message
flood.cpp: In function 'int main()':
flood.cpp:106:29: warning: format '%i' expects argument of type 'int', but argument 2 has type 'std::vector<int>::size_type {aka long unsigned int}' [-Wformat=]
printf("%i\n",ans.size());
~~~~~~~~~~^
flood.cpp:74:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%i",&n);
~~~~~^~~~~~~~~
flood.cpp:77:51: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%i %i",&nodes[i].f.f,&nodes[i].f.s),nodes[i].s=i;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
flood.cpp:79:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%i",&w);
~~~~~^~~~~~~~~
flood.cpp:83:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%i %i",&a,&b);
~~~~~^~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7416 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7392 KB |
Output is correct |
2 |
Correct |
12 ms |
7416 KB |
Output is correct |
3 |
Correct |
12 ms |
7320 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7416 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7388 KB |
Output is correct |
2 |
Correct |
13 ms |
7428 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7416 KB |
Output is correct |
2 |
Correct |
12 ms |
7416 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7416 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7420 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7416 KB |
Output is correct |
2 |
Correct |
12 ms |
7416 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
7416 KB |
Output is correct |
2 |
Correct |
12 ms |
7416 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
8120 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
75 ms |
13036 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
70 ms |
10096 KB |
Output is correct |
2 |
Correct |
188 ms |
11912 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
165 ms |
11244 KB |
Output is correct |
2 |
Correct |
175 ms |
13208 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
190 ms |
11728 KB |
Output is correct |
2 |
Correct |
191 ms |
27832 KB |
Output is correct |