# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
72334 | nvmdava | Dreaming (IOI13_dreaming) | C++17 | 0 ms | 0 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 "dreaming.h"
#include <bits/stdc++.h>
using namespace std;
struct Path{
int to, cost;
Path(int _to, int _cost){
to = _to;
cost = _cost;
}
};
struct Node{
int p[20], d;
};
map<int, int> c[100001];
vector<Path> path[100001];
bool in[100001];
Node a[100001];
int mxdist, mxid;
int solo = 0;
void build(int v, int p){
in[v] = 1;
for(auto x : path[v]){
if(x.to == p) continue;
a[x.to].d = a[v].d + 1;
memset(a[x.to].p, -1, sizeof(a[x.to].p));
a[x.to].p[0] = v;
for(int i = 1; i < 20; i++){
int t = a[x.to].p[i - 1];