# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
24194 | Nirjhor | Race (IOI11_race) | C++14 | 887 ms | 76284 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>
#include "race.h"
using namespace std;
typedef long long ll;
typedef pair <int, ll> edge;
#define x first
#define y second
const int N = 200010;
const int INF = 1e9 + 10;
vector <edge> g[N];
int n, k, ans = INF;
void dfs (int u, int from, map <ll, int> &f, ll &key_f, int &val_f) {
f[0] = 0;
key_f = val_f = 0;
for (edge e : g[u]) {
int v = e.x;
ll w = e.y;
if (v == from) continue;
map <ll, int> t;
ll key_t;
int val_t;
dfs(v, u, t, key_t, val_t);
key_t += w, ++val_t;
if (t.size() > f.size()) {
# | 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... |