Submission #647830

# Submission time Handle Problem Language Result Execution time Memory
647830 2022-10-04T08:38:40 Z ToroTN Flood (IOI07_flood) C++14
10 / 100
2000 ms 12416 KB
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define X first
#define Y second
int n,m,x[100005],y[100005],wall1,wall2,a1,b1,a2,b2,go[100005][4],st,d[100005];
int nxt[100005][4],p[100005],rev[100005],num,dir,val;
//right=0 down=1 left 2 up=3
vector<pair<pair<int,int>,int > > v;
vector<int> g;
set<int> s;
void dfs(int u)
{
    for(int i=0;i<4;i++)
    {
        int way=(dir+2+i)%4;
        if(go[u][way]!=0&&go[u][way]!=p[u])
        {
            int bug=d[go[u][way]];
            if(bug!=1)
            {
                if(bug==-1)
                {
                    d[go[u][way]]=0;
                    g.pb(go[u][way]);
                    p[go[u][way]]=u;
                    dir=way;
                    rev[go[u][way]]=nxt[u][way];
                    dfs(go[u][way]);
                }else
                {
                    for(int j=0;j<(int)g.size();j++)
                    {
                        d[g[j]]=1;
                    }
                    s.erase(nxt[u][way]);
                    num=u;
                    while(1)
                    {
                        if(num==go[u][way])break;
                        s.erase(rev[num]);
                        num=p[num];
                    }
                    g.clear();
                    if(g.size()==0)return;
                }
            }
        }
    }
}
int main()
{
    memset(d,-1,sizeof d);
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
    {
        scanf("%d%d",&x[i],&y[i]);
        v.pb({{x[i],y[i]},i});
    }
    scanf("%d",&m);
    for(int i=1;i<=m;i++)
    {
        s.insert(i);
        scanf("%d%d",&wall1,&wall2);
        a1=x[wall1];
        b1=y[wall1];
        a2=x[wall2];
        b2=y[wall2];
        if(a1>a2)
        {
            swap(a1,a2);
            swap(wall1,wall2);
        }
        if(a1<a2)
        {
            go[wall1][1]=wall2;
            go[wall2][3]=wall1;
            nxt[wall1][1]=i;
            nxt[wall2][3]=i;
        }
        if(b1>b2)
        {
            swap(b1,b2);
            swap(wall1,wall2);
        }
        if(b1<b2)
        {
            go[wall1][0]=wall2;
            go[wall2][2]=wall1;
            nxt[wall1][0]=i;
            nxt[wall2][2]=i;
        }
    }
    sort(v.begin(),v.end());
    for(int i=0;i<(int)v.size();i++)
    {
        st=v[i].Y;
        if(d[st]==-1)
        {
            val=0;
            d[st]=0;
            dir=2;
            g.pb(st);
            dfs(st);
        }
    }
    printf("%d\n",(int)s.size());
    for(auto it:s)printf("%d\n",it);
}

Compilation message

flood.cpp: In function 'int main()':
flood.cpp:54:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   54 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
flood.cpp:57:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   57 |         scanf("%d%d",&x[i],&y[i]);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~
flood.cpp:60:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   60 |     scanf("%d",&m);
      |     ~~~~~^~~~~~~~~
flood.cpp:64:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   64 |         scanf("%d%d",&wall1,&wall2);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 724 KB Output is correct
# Verdict Execution time Memory Grader output
1 Execution timed out 2064 ms 596 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2079 ms 724 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2079 ms 724 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2088 ms 724 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2086 ms 724 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2074 ms 724 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2071 ms 724 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2087 ms 724 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2073 ms 2896 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2074 ms 8764 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2077 ms 9412 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2085 ms 11436 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2079 ms 12416 KB Time limit exceeded
2 Halted 0 ms 0 KB -