#include "dreaming.h"
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#define FOR(i, x, y) for (ll i = x; i < y; i++)
typedef long long ll;
using namespace std;
vector<pair<ll, ll>> graph[100001];
ll len, ans = -1, r[2], indx = 0;
bool visited[100001];
ll dfs(ll node, ll parent = -1) {
visited[node] = true;
for (auto& i : graph[node]) {
if (i.first == parent) continue;
return i.second + dfs(i.first, node);
}
return 0;
}
ll dfs2(ll node, ll parent = -1, ll left = 0) {
for (auto& i : graph[node]) {
if (i.first == parent) continue;
return min(max(left, len - left), dfs2(i.first, node, left + i.second));
}
return len;
}
int travelTime(int N, int M, int L, int A[], int B[], int T[]) {
fill(visited, visited + N, false);
FOR(i, 0, M) {
graph[A[i]].push_back({B[i], T[i]});
graph[B[i]].push_back({A[i], T[i]});
}
FOR(i, 0, N) {
if (graph[i].size() == 1 && !visited[i]) {
len = dfs(i);
ans = max(len, ans);
r[indx++] = dfs2(i);
}
}
cout << max(ans, r[0] + r[1] + L) << '\n';
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
58 ms |
9080 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
58 ms |
9080 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
58 ms |
9080 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
31 ms |
10024 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
58 ms |
9080 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
58 ms |
9080 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |