# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
36933 | szawinis | Race (IOI11_race) | C++14 | 2177 ms | 47808 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 "race.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 2e5 + 1, K = 1e6 + 1;
int n, k, sz[N];
vector<pair<int, int>> g[N];
bool block[N];
void init(int u, int par) {
sz[u] = 1;
for(auto p: g[u]) if(p.first != par && !block[p.first]) {
init(p.first, u);
sz[u] += sz[p.first];
}
}
void dfs(int u, int par, int sum, int depth, map<int, int>& store) {
// cout << u << ' ' << par << endl;
for(auto p: g[u]) if(p.first != par && !block[p.first]) {
// cout << u << ' ' << p.first << ' ' << sum + p.second << ' ' << depth + 1 << endl;
if(!store.count(sum + p.second)) store[sum + p.second] = depth + 1;
else store[sum + p.second] = min(depth + 1, store[sum + p.second]);
dfs(p.first, u, sum + p.second, depth + 1, store);
}
}
int solve(int src) {
init(src, -1);
int cen = src;
# | 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... |