제출 #1105185

#제출 시각아이디문제언어결과실행 시간메모리
1105185anarch_y열대 식물원 (Tropical Garden) (IOI11_garden)C++17
69 / 100
5052 ms50248 KiB
#include "garden.h" #include "gardenlib.h" #include <bits/stdc++.h> using namespace std; using ll = long long; #define all(x) begin(x), end(x) #define sz(x) (int)x.size() #define pb push_back void count_routes(int N, int M, int P, int R[][2], int Q, int G[]){ int n = N, m = M; vector<pair<int, int>> vec[n]; int mn[n] = {}; for(int i=1; i<=m; i++){ int a, b; a = R[i-1][0], b = R[i-1][1]; vec[a].pb({b, i}); vec[b].pb({a, i}); if(mn[a] == 0) mn[a] = i; if(mn[b] == 0) mn[b] = i; } int to[2*n] = {}; for(int a=0; a<n; a++){ auto [b, i] = vec[a][0]; if(mn[b] == i) to[a] = n+b; else to[a] = b; if(sz(vec[a]) >= 2){ auto [c, j] = vec[a][1]; if(mn[c] == j) to[n+a] = n+c; else to[n+a] = c; } else{ if(mn[b] == i) to[n+a] = n+b; else to[n+a] = b; } } int succ[2*n][30] = {}; for(int a=0; a<2*n; a++){ succ[a][0] = to[a]; } for(int i=1; i<30; i++){ for(int a=0; a<2*n; a++){ succ[a][i] = succ[succ[a][i-1]][i-1]; } } int p = P; int q = Q; int qry[q] = {}; for(int i=0; i<q; i++) qry[i] = G[i]; for(int i=0; i<q; i++){ int k = qry[i]; int ans = 0; for(int a=0; a<n; a++){ int x = a; for(int i=0; i<30; i++){ if(k & (1<<i)) x = succ[x][i]; } if(x == p or x == n+p) ans++; } answer(ans); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...