# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
103443 | SecretAgent007 | Sightseeing (NOI14_sightseeing) | C++17 | 3117 ms | 100376 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;
#define double long double
const int INF = INT_MAX;
vector< vector< pair< int, int > > > Graph;
vector< int > U;
vector< int > dist;
int getParents(int a){
if(U[a] == a) return a;
else return U[a] = getParents(U[a]);
}
void Union(int a, int b){
U[getParents(a)] = getParents(b);
}
void dfs(int node, int last){
for(auto a : Graph[node]){
if(a.first == last) continue;
dist[a.first] = min(a.second, dist[node]);
dfs(a.first, node);
}
}
Compilation message (stderr)
# | 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... |