Submission #357216

#TimeUsernameProblemLanguageResultExecution timeMemory
357216daniel920712Parachute rings (IOI12_rings)C++14
0 / 100
1579 ms87312 KiB
#include <stdio.h> #include <stdlib.h> #include <vector> using namespace std; int N; int who; vector < int > Next[1000005],tt; int deg[1000005]; bool have[1000005]; int ok=1; int x=0,y=0,z=0; void Init(int N_) { N = N_; } void Link(int A, int B) { Next[A].push_back(B); Next[B].push_back(A); deg[A]++; deg[B]++; } void F(int here) { y++; int t=0; have[here]=1; for(auto i:Next[here]) if(!have[i]&&i!=who) F(i); } int CountCritical() { int ans=0,now=0; int i,j; tt.clear(); for(i=0;i<N;i++) { if(deg[i]>=3) { tt.push_back(i); now++; } } //printf("%d\n",now); if(now==0) { x=y=0; ok=1; who=i; for(j=0;j<N;j++) have[j]=0; for(j=0;j<N;j++) { if(deg[j]==0) have[j]=1; if(deg[j]==1&&!have[j]) F(j); } for(j=0;j<N;j++) { if(!have[j]) { who=-1; x++; y=0; F(j); } ans+=x; } if(x==0) return N; if(x==1) return y; return 0; } else if(now==1) { //printf("bb %d\n",ans); for(auto i:tt) { ok=1; who=i; for(auto j:Next[i]) deg[j]--; for(j=0;j<N;j++) have[j]=0; have[i]=1; for(j=0;j<N;j++) { if(deg[j]==0) have[j]=1; if(deg[j]==1&&!have[j]) F(j); if(deg[j]>=3&&i!=j) ok=0; } for(j=0;j<N;j++) if(!have[j]) ok=0; for(auto j:Next[i]) deg[j]++; ans+=ok; } //printf("aa %d\n",ans); if(deg[tt[0]]==3) { for(auto i:Next[tt[0]]) { ok=1; who=i; for(auto j:Next[i]) deg[j]--; for(j=0;j<N;j++) have[j]=0; have[i]=1; for(j=0;j<N;j++) { if(deg[j]==0) have[j]=1; if(deg[j]==1&&!have[j]) F(j); if(deg[j]>=3&&i!=j) ok=0; } for(j=0;j<N;j++) if(!have[j]) ok=0; for(auto j:Next[i]) deg[j]++; //printf("tt %d %d %d\n",i,ok,ans); ans+=ok; //printf("%d %d %d\n",i,ok,ans); } } return ans; } else if(now==2) { for(auto i:tt) { ok=1; who=i; for(auto j:Next[i]) deg[j]--; for(j=0;j<N;j++) have[j]=0; have[i]=1; for(j=0;j<N;j++) { if(deg[j]==0) have[j]=1; if(deg[j]==1&&!have[j]) F(j); if(deg[j]>=3&&i!=j) ok=0; } for(j=0;j<N;j++) if(!have[j]) ok=0; for(auto j:Next[i]) deg[j]++; ans+=ok; } return ans; } else return 0; }

Compilation message (stderr)

rings.cpp: In function 'void F(int)':
rings.cpp:27:9: warning: unused variable 't' [-Wunused-variable]
   27 |     int t=0;
      |         ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...