This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#include <iostream>
#include "garden.h"
#include "gardenlib.h"
#define lcm(a,b) (a/__gcd(a,b))*b
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define pb push_back
#define F first
#define S second
#define mp make_pair
using namespace std;
void count_routes(int N, int M, int P, int R[][2], int Q, int g[])
{
vi G[N+1];
for(int i=0;i<M;i++){
int a=R[i][0],b=R[i][1];
if(G[a].size()<2){
G[a].pb(b);
}
if(G[b].size()<2){
G[b].pb(a);
}
}
int k=g[0];
int res=0;
for(int i=1;i<2;i++){
int curr=i;
int p=-1;
for(int l=0;l<k;l++){
//cout<<"nodo "<<curr<<" "<<p<<endl;
if(G[curr].size()==2){
if(G[curr][0]!=p){
p=curr;
curr=G[curr][0];
}else{
p=curr;
curr=G[curr][1];
}
continue;
}
if(G[curr].size()==1){
p=curr;
curr=G[curr][0];
}
}
//cout<<"final "<<curr<<" "<<p<<endl;
//cout<<i<<" "<<curr<<endl;
if(curr==P)res++;
}
answer(res);
}
/*
5 5 2
1 0
1 2
3 2
1 3
4 2
1
3 1
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |