#include <queue>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
typedef pair<int,int> pi;
vector<pi> graph0[150005];
vector<int> graph1[300005];
int nxt[300005];
int low[150005];
int periods[300005];
int deg[300005];
int n, qcnt;
int *g;
int ret[2005];
queue<int> q, p, d;
bool vis[300005];
void get_periods(){
for (int i=0; i<2*n; i++) {
if(deg[i] == 1){
q.push(i);
}
}
while (!q.empty()) {
int qf = q.front();
q.pop();
deg[qf] = 0;
for (auto &i : graph1[qf]){
deg[i]--;
if(deg[i] == 1){
q.push(i);
}
}
}
int cnt = 0;
for (int i=0; i<2*n; i++) {
if(deg[i] != 0) cnt++;
}
for (int i=0; i<2*n; i++) {
if(deg[i] != 0) periods[i] = cnt;
else periods[i] = -1;
}
}
void solve(int st){ // st 점에서 G[i] 번 방문해서 도달하는 점의 개수 추가
q.push(st);
p.push(-1);
d.push(0);
vis[st] = 1;
while (!q.empty()) {
int qf = q.front(), pf = p.front(), df = d.front();
q.pop(), p.pop(), d.pop();
pf = max(pf, periods[qf]);
if(qf % 2 == 0){
for (int i=0; i<qcnt; i++) {
if(pf == -1){
if(df == g[i]){
ret[i]++;
}
}
else{
if(df <= g[i] && g[i] % pf == df % pf){
ret[i]++;
}
}
}
}
for (auto &i : graph1[qf]){
if(vis[i]) continue;
vis[i] = 1;
q.push(i);
p.push(qf);
d.push(df + 1);
}
}
}
void count_routes(int N, int M, int P, int R[][2], int Q, int G[])
{
n = N, qcnt = Q, g = G;
memset(low,0x3f,sizeof(low));
for (int i=0; i<M; i++) {
for (int j=0; j<2; j++) {
low[R[i][j]] = min(low[R[i][j]],i);
}
graph0[R[i][0]].push_back(pi(R[i][1],i));
graph0[R[i][1]].push_back(pi(R[i][0],i));
}
for (int i=0; i<N; i++) {
if(low[graph0[i][0].first] == graph0[i][0].second){
nxt[2*i] = graph0[i][0].first * 2 + 1;
}
else{
nxt[2*i] = graph0[i][0].first * 2;
}
if(graph0[i].size() == 1){
nxt[2*i+1] = nxt[2*i];
}
else{
if(low[graph0[i][1].first] == graph0[i][1].second){
nxt[2*i+1] = graph0[i][1].first * 2 + 1;
}
else{
nxt[2*i+1] = graph0[i][1].first * 2;
}
}
}
for (int i=0; i<2*N; i++){
graph1[nxt[i]].push_back(i);
deg[i]++;
deg[nxt[i]]++;
}
get_periods();
solve(2*P);
solve(2*P+1);
for (int i=0; i<Q; i++) {
answer(ret[i]);
}
}
Compilation message
garden.cpp: In function 'void count_routes(int, int, int, int (*)[2], int, int*)':
garden.cpp:122:9: error: 'answer' was not declared in this scope
answer(ret[i]);
^~~~~~