이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "catdog.h"
using namespace std ;
int x;
const int MX = 1000 + 7 ;
int val[MX] ;
vector<int> adj[MX] ;
int root ;
void initialize(int N, std::vector<int> A, std::vector<int> B)
{
for(int i = 0 ;i < N ;++ i){
adj[A[i]].push_back(B[i]) ;
adj[B[i]].push_back(A[i]) ;
}
for(int i =1 ;i <= N ; ++ i){
if(adj[i].size() == 1){
root = i ;
}
}
}
int dfs(int x, int p , int lst = 0){
int ret = 0 ;
if(val[x] && lst && val[x] != lst){
++ret ;
}
for(auto u : adj[x]){
if(u == p)continue ;
ret += dfs(u , x , (val[x]?val[x]:lst) ) ;
}
return ret;
}
int cat(int v)
{
val[v] = 1;
return dfs(root , root ) ;
}
int dog(int v)
{
val[v] = 2;
return dfs(root , root ) ;
}
int neighbor(int v)
{
val[v] =0 ;
return dfs(root , root ) ;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |