# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
565812 | shahriarkhan | Village (BOI20_village) | C++14 | 142 ms | 39840 KiB |
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>
using namespace std ;
const int MX = 1e5 + 5 , INF = 1e9 + 5 , LG = 25 ;
int dp[MX][2] , mn[MX] ;
vector<int> adj[MX] ;
vector<pair<int,int> > pick[MX][2] ;
void dfs(int s , int p)
{
int sum = 0 , good = 0 , leaf = 1 , rd = 0 , pos = 0 , idx = 0 ;
dp[s][0] = 0 , dp[s][1] = INF ;
for(int t : adj[s])
{
if(t==p) continue ;
dfs(t,s) , leaf = 0 ;
dp[s][0] = min(dp[s][0] + dp[t][1] , INF) , pick[s][0].push_back({t,1}) ;
if((dp[t][0]+2)<=dp[t][1])
{
sum += dp[t][0] + 2 , pick[s][1].push_back({t,0}) , ++pos ;
good = 1 ;
}
else
{
if(dp[t][0]<dp[t][1])
{
rd = t ;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |