| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 745730 | yeyso | 꿈 (IOI13_dreaming) | C++14 | 149 ms | 39628 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;
vector<vector<int>> adj; vector<vector<int>> dmj; vector<int> dist; vector<int> dist2; vector<set<pair<int, int>>> components; vector<set<pair<int, int>>> components2;
void dfs(int node, int parent, int distance, int component, int mode){
if(mode == 0) components[component].insert({distance, node});
if(mode == 1) components2[component].insert({distance, node});
dist[node] = distance;
for(int i = 0; i < adj[node].size(); i ++){
if(adj[node][i] != parent){
dfs(adj[node][i], node, distance + dmj[node][i], component, mode);
}
}
}
int travelTime(int N, int M, int L, int A[], int B[], int T[]) {
vector<vector<int>> adj0(N, vector<int>()); vector<vector<int>> dmj0(N, vector<int>());
for(int i = 0; i < M; i ++){
adj0[A[i]].push_back(B[i]); adj0[B[i]].push_back(A[i]);
dmj0[A[i]].push_back(T[i]); dmj0[B[i]].push_back(T[i]);
}
vector<int> dist0(N, INT_MAX / 2);
adj = adj0; dmj = dmj0; dist = dist0; dist2 = dist0;
int component_ = 0;
for(int i = 0; i < N; i ++){
if(dist[i] >= INT_MAX / 2){
components.push_back({}); components2.push_back({});
dist[i] = 0;
dfs(i, -1, 0, component_, 0);
component_ += 1;
}
}
for(int i = 0; i < components.size(); i ++){
//cout << (*(--components[i].end())).second << " ";
dfs((*(--components[i].end())).second, -1, 0, i, 1);
} //cout << "\n";
int furtherest = 0; int mid = 0; int mid2 = 0; int split = 0;
set<pair<int, int>> components3;
for(int i = 0; i < components2.size(); i ++){
furtherest = (*(--components2[i].end())).first;
mid = (*(components2[i].lower_bound({furtherest / 2, 0}))).first;
mid2 = (*(--components2[i].lower_bound({furtherest / 2, 0}))).first;
if(abs(furtherest - mid) > abs(furtherest - mid2)){ split = mid2;
} else { split = mid; }
if(split > furtherest / 2) components3.insert({split, furtherest - split});
if(split <= furtherest / 2) components3.insert({furtherest - split, split});
}
int maxacross = (*(--components3.end())).first + (*(----components3.end())).first + L;
int maxwithin = (*(--components3.end())).first + (*(--components3.end())).second;
return max(maxacross, maxwithin);
}
/*
g++ -DEVAL -static -O2 -o dreaming grader.cpp dreaming.cpp
12 8 2
0 8 4
8 2 2
2 7 4
5 11 3
5 1 7
1 3 1
1 9 5
10 6 3
*/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... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
