Submission #395955

#TimeUsernameProblemLanguageResultExecution timeMemory
395955Jarif_Rahman경주 (Race) (IOI11_race)C++17
21 / 100
3059 ms23396 KiB
#include "race.h"
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
const ll inf = 1e18;

ll k;
vector<map<ll, int>> s;
vector<vector<pair<int, ll>>> v;
ll ans = 1e18;

void dfs(int nd, int ss, ll dis, int depth){
    for(auto [x, w]: v[nd]) if(x != ss) dfs(x, nd, dis+w, depth+1);
    int mx = -1, in = -1;
    for(auto [x, w]: v[nd]) if(x != ss){
        if(s[x].size() > mx){
            mx = s[x].size();
            in = x;
        }
    }
    if(in != -1) swap(s[nd], s[in]);
    for(auto [x, w]: v[nd]) if(x != ss && x != in){
        for(auto [d0, dpt0]: s[x]){
            ll d = d0, dpt = dpt0;
            dpt-=depth;
            d-=dis;
            ll dd = k-d;
            if(dd == 0){
                ans = min(ans, dpt);
            }
            else{
                if(s[nd].find(dd+dis) != s[nd].end()){
                    ans = min(ans, dpt+s[nd][dd+dis]-depth);
                }
            }
        }
        for(auto [d, dpt]: s[x]){
            if(s[nd].find(d) == s[nd].end()) s[nd][d] = dpt;
            else s[nd][d] = min(s[nd][d], dpt);
        }
        s[x].clear();
    }
    if(s[nd].find(dis) == s[nd].end()) s[nd][dis] = depth;
    else s[nd][dis] = min(s[nd][dis], depth);
}

int best_path(int n, int k, int edges[][2], int w[]){
    ::k = k;
    v.resize(n);
    s.resize(n);
    for(int i = 0; i < n-1; i++){
        v[edges[i][0]].pb({edges[i][1], w[i]});
        v[edges[i][1]].pb({edges[i][0], w[i]});
    }
    dfs(0, -1, 0LL, 0);
    if(ans == inf) ans = -1;
    return ans;
}

Compilation message (stderr)

race.cpp: In function 'void dfs(int, int, ll, int)':
race.cpp:20:24: warning: comparison of integer expressions of different signedness: 'std::map<long long int, int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |         if(s[x].size() > mx){
      |            ~~~~~~~~~~~~^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...