#include <iostream>
#include <vector>
#include <queue>
#include <climits>
using namespace std;
#define pii pair<int, int>
const double EPS = 0.000001;
struct line {
int m, b;
line() {}
line(int m, int b) : m(m), b(b) {}
double combine(line other) {
int mm = m - other.m, bb = other.b - b;
if (mm == 0 && bb) {
cout << "NO\n";
exit(0);
}
if (mm == 0) return INT_MAX;
return (double) bb / mm;
}
};
int main() {
int n, m; cin >> n >> m;
vector<vector<pii>> adj(n);
for (int i = 0; i < m; ++i) {
int a, b, c; cin >> a >> b >> c; --a, --b;
adj[a].push_back({b, c}), adj[b].push_back({a, c});
}
vector<line> lines(n); lines[0] = line(1, 0);
vector<bool> vis(n);
queue<int> q;
vis[0] = true, q.push(0);
double ans = 0;
while (q.size()) {
int v = q.front(); q.pop();
for (pii p : adj[v]) {
int u = p.first, c = p.second;
line change(-lines[v].m, c - lines[v].b);
if (!vis[u]) {
vis[u] = true, q.push(u);
lines[u] = change;
} else {
ans = lines[u].combine(change);
if (ans < INT_MAX - 1) break;
}
}
}
// if (ans > INT_MAX - 1) ans = 0.5;
if (ans > INT_MAX - 1) ans = 420.69;
vector<double> values(n); values[0] = ans;
vis.assign(n, false);
q = queue<int>();
vis[0] = true, q.push(0);
while (q.size()) {
int v = q.front(); q.pop();
for (pii p : adj[v]) {
int u = p.first, c = p.second;
// cout << v << ' ' << u << '\n';
if (vis[u]) continue;
vis[u] = true, q.push(u);
values[u] = c - values[v];
}
}
cout << "YES\n";
for (double val : values) cout << val << ' ';
cout << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
answer = YES |
2 |
Incorrect |
0 ms |
212 KB |
participant answer is larger than the answer of jury |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
answer = YES |
2 |
Incorrect |
0 ms |
212 KB |
participant answer is larger than the answer of jury |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
answer = YES |
2 |
Incorrect |
0 ms |
212 KB |
participant answer is larger than the answer of jury |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
answer = YES |
2 |
Incorrect |
0 ms |
212 KB |
participant answer is larger than the answer of jury |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
answer = YES |
2 |
Incorrect |
0 ms |
212 KB |
participant answer is larger than the answer of jury |
3 |
Halted |
0 ms |
0 KB |
- |