# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
828450 | AkramElOmrani | Race (IOI11_race) | C++17 | 294 ms | 69736 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;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx,avx2,bmi,bmi2,popcnt,lzcnt")
template<typename A, typename B> ostream& operator<<(ostream &os, const pair<A, B> &p) { return os << '(' << p.first << ", " << p.second << ')'; }
template<typename T_container, typename T = typename enable_if<!is_same<T_container, string>::value, typename T_container::value_type>::type> ostream& operator<<(ostream &os, const T_container &v) { os << '{'; string sep; for (const T &x : v) os << sep << x, sep = ", "; return os << '}'; }
void dbg_out() { cerr << endl; }
template<typename Head, typename... Tail> void dbg_out(Head H, Tail... T) { cerr << ' ' << H; dbg_out(T...); }
#define dbg(...) cerr << "(" << #__VA_ARGS__ << "):", dbg_out(__VA_ARGS__);
const int INF = 1e9 + 5;
int ans = INF;
vector<vector<pair<int, int>>> adj;
// {distance, depth}
void dfs(int node, int p, map<int, int>& mp, int& k, int depth, int distance) {
mp[distance] = depth;
for(auto[x, w] : adj[node]) {
if(p == x) continue;
map<int, int> nxt;
dfs(x, node, nxt, k, depth + 1, distance + w);
if(mp.size() < nxt.size()) swap(mp, nxt);
for(auto&[x, y] : nxt) {
int new_dist = k + 2 * distance - x;
if(mp.count(new_dist)) {
ans = min(ans, mp[new_dist] + y - 2 * depth);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |