# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
826995 | vjudge1 | Cats or Dogs (JOI18_catdog) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "catdog.h"
#define pb push_back
#define pli pair<int,int>
#define fi first
#define se second
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL);
using namespace std;
using ll=long long;
const ll maxN=2e5;
const ll inf=1e18;
const ll mod=1e9+7;
ll a[maxN],dp[maxN][3];
vector<ll>g[maxN];
ll ans=0;
void dfs(ll u,ll p=0)
{
if(a[u]==0)
{
dp[u][1]=dp[u][2]=dp[u][0]=0;
}
if(a[u]==1)
{
dp[u][1]=0;
dp[u][2]=dp[u][0]=inf;
}
if(a[u]==2)
{
dp[u][2]=0;
dp[u][1]=dp[u][0]=inf;
}
for(int v:g[u])
{
if(v!=p)
{
dfs(v,u);
dp[u][0]+=min({dp[v][0],dp[v][1]+1,dp[v][2]+1});
dp[u][1]+=min({dp[v][1],dp[v][0],dp[v][2]+1});
dp[u][2]+=min({dp[v][2],dp[v][0],dp[v][1]+1});
}
}
}
void initialize(int n,vector<int> A,vector<int>B)
{
for(int i=0;i<n-1;i++)
{
g[A[i]].pb(B[i]);
g[B[i]].pb(A[i]);
}
for(int i=1;i<=n;i++)
{
a[i]=0;
}
}
ll cat(int v)
{
a[v]=1;
ans=0;
dfs(1);
return min({dp[1][1],dp[1][0],dp[1][2]});
}
ll dog(int v)
{
a[v]=2;
ans=0;
dfs(1);
return min({dp[1][1],dp[1][0],dp[1][2]});;
}
ll neighbor(int v)
{
a[v]=0;
ans=0;
dfs(1);
return min({dp[1][1],dp[1][0],dp[1][2]});
}
/*int main()
{
fastio
//freopen(TASKNAME".INP","r",stdin);
//freopen(TASKNAME".OUT","w",stdout);
initialize(5,{1,2,2,4},{2,3,4,5});
cat(3),dog(5);
cat(2),dog(1);
cout << dog(1);
}*/