This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**
* author: kututay
* created: 20.09.2022 13:13:02
**/
#include <bits/stdc++.h>
using namespace std;
#ifdef DEBUG
#include "/Users/kutay/CP/templates/debug.h"
#else
#define debug(...) void(38)
#endif
const double epsilon = 1e-6;
int32_t main() {
ios_base::sync_with_stdio(0); cin.tie(0);
int n, m; cin >> n >> m;
vector<vector<pair<int, int>>> g(n);
vector<pair<pair<int, int>, int>> edges(m);
for (int i = 0; i < m; i++) {
int x, y, z; cin >> x >> y >> z, x--, y--;
g[x].emplace_back(y, z);
g[y].emplace_back(x, z);
}
vector<double> ans(n);
vector<int> components_vis(n);
auto solve = [&](int node) {
vector<pair<int, int>> n_vals(n, make_pair(0, 0)); // (first * x + second) - node values
vector<int> cycle_vis(n);
bool cycle = false;
vector<pair<pair<int, int>, int>> edges;
set<int> nodes;
function<void(int, int, int)> find_cycle = [&](int node, int parent, int color) {
nodes.insert(node);
if (cycle_vis[node]) {
cycle = true;
return;
}
cycle_vis[node] = 1;
components_vis[node] = 1;
for (auto next : g[node]) {
edges.emplace_back(make_pair(node, next.first), next.second);
if (parent == -1) n_vals[node] = make_pair(1, 0);
else n_vals[node] = make_pair(-n_vals[parent].first, color - n_vals[parent].second);
if (next.first != parent) find_cycle(next.first, node, next.second);
}
};
find_cycle(node, -1, -1);
double x;
if ((int) edges.size() == 0) return;
bool flag = false;
for (auto [p, color] : edges) {
auto a = n_vals[p.first];
auto b = n_vals[p.second];
pair<int, int> should = make_pair(-a.first, color - a.second);
if (b == should) continue;
pair<int, int> sum = make_pair(b.first + a.first, color - (b.second + a.second));
if (sum.first == 0) {
cout << "NO\n";
exit(0);
}
x = (double) sum.second / sum.first;
flag = true;
}
debug(flag, cycle, x);
if (flag == false or cycle == false) {
vector<double> s(101);
for (int i : nodes) {
for (int j = -50; j < 50; j++) {
s[j + 50] += abs(n_vals[i].first * j + n_vals[i].second);
}
}
int mn = 1e9;
for (int j = -50; j < 50; j++) {
if (s[j + 50] < mn) {
x = j;
mn = s[j + 50];
}
}
for (int i : nodes) {
ans[i] = n_vals[i].first * x + n_vals[i].second;
}
return;
}
for (auto [p, color] : edges) {
auto a = n_vals[p.first];
auto b = n_vals[p.second];
double sum = a.first * x + a.second + b.first * x + b.second;
if (abs(sum - color) > epsilon) {
cout << "NO\n";
exit(0);
}
}
for (int i : nodes) {
ans[i] = n_vals[i].first * x + n_vals[i].second;
}
debug(ans);
};
for (int i = 0; i < n; i++) {
if (components_vis[i]) continue;
solve(i);
}
cout << "YES\n";
for (auto x : ans) cout << fixed << setprecision(6) << x << " ";
cout << '\n';
double top = 0;
for (auto x : ans) top += abs(x);
debug(ans.size());
debug(top);
}
Compilation message (stderr)
Graph.cpp: In function 'int32_t main()':
Graph.cpp:83:34: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
83 | ans[i] = n_vals[i].first * x + n_vals[i].second;
# | 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... |