Submission #14691

#TimeUsernameProblemLanguageResultExecution timeMemory
14691minsuTropical Garden (IOI11_garden)C++14
49 / 100
13 ms8412 KiB
#include <cstdio> #include <cstring> #include "garden.h" #include "gardenlib.h" #include <cstdlib> #include <queue> using namespace std; const int MAXN=1e6; int elast[MAXN], eprev[MAXN], eadj[MAXN], eind; int bpath[MAXN][2], bpathn[MAXN]; int L[MAXN], C[MAXN]; void add_edge(int u, int v){ eadj[eind]=v; eprev[eind]=elast[u]; elast[u]=eind++; } void count_routes(int N, int M, int P, int R[][2], int Q, int G[]) { for(int i=0;i<M;i++){ int u=R[i][0], v=R[i][1]; if(bpathn[u]<2) bpath[u][bpathn[u]++]=v; if(bpathn[v]<2) bpath[v][bpathn[v]++]=u; } for(int i=0;i<N;i++) if(bpathn[i]==1) bpath[i][1]=bpath[i][0], bpathn[i]++; memset( elast, -1, sizeof elast ); // Vertex 0 to 2*N-1 for(int u=0;u<N;u++){ if(bpathn[u]==0) continue; int F=bpath[u][0], S=bpath[u][1]; if(bpath[F][0]!=u) add_edge(F*2, u*2); else add_edge(F*2+1, u*2); if(bpath[S][0]!=u) add_edge(S*2, u*2+1); else add_edge(S*2+1, u*2+1); } queue<int> q; q.push(P*2); q.push(P*2+1); L[P*2]=L[P*2+1]=0; C[P*2]=P*2; C[P*2+1]=P*2+1; while(!q.empty()){ int here=q.front(); q.pop(); for(int i=elast[here];i!=-1;i=eprev[i]){ int there=eadj[i]; L[there]=L[here]+1; C[there]=C[here]; if(there/2==P) continue; q.push(there); } } int sp = (C[P*2]==P*2+1 && C[P*2+1]==P*2); for(int i=0;i<Q;i++){ int ans=0; for(int b=0;b<2*N;b+=2){ int g=G[i], c=C[b]; if(g==L[b]) { ans++; continue; } g-=L[b]; if(g<0) continue; if(sp){ int a=L[c], b=L[C[c]]; if(g%(a+b)==a || g%(a+b)==0) ans++; }else{ g-=L[c]; if(g>=0 && g%L[C[c]]==0) ans++; } } answer(ans); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...