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 int long long
int ans = 0;
map<pair<int, int>, int> cost_of_pair;
vector<int> cost;
vector<int> calculated;
vector<vector<pair<int, int>>> g;
int dfs(int u, int depth) {
if(depth >= 2) {
return 0;
}
if(depth == 1) {
for(auto v : calculated) {
if(cost_of_pair.count(make_pair(u, v))) {
//cout << v << ' ' << u << '\n';
//cout << cost[v] << ' ' << cost[u] << ' ' << cost_of_pair[make_pair(u, v)] << '\n';
ans = max(ans, cost[v] + cost[u] + cost_of_pair[make_pair(u, v)]);
}
}
return 0;
}
int curr = 0;
for(auto v : g[u]) {
cost[v.first] = v.second;
calculated.push_back(v.first);
curr += v.second;
dfs(v.first, depth + 1);
}
return curr;
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m;
cin >> n >> m;
cost = vector<int>(n);
g = vector<vector<pair<int, int>>>(n);
for(int i = 0; i < m; i++) {
int from, to, w;
cin >> from >> to >> w;
from--;
to--;
g[from].push_back(make_pair(to, w));
g[to].push_back(make_pair(from, w));
cost_of_pair[make_pair(from, to)] = w;
cost_of_pair[make_pair(to, from)] = w;
}
ans = 0;
for(int i = 0; i < n; i++) {
int curr = dfs(i, 0);
calculated.clear();
ans = max(ans, curr);
}
cout << ans << '\n';
return 0;
}
# | 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... |