# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
917368 |
2024-01-28T03:14:14 Z |
NK_ |
Graph (BOI20_graph) |
C++17 |
|
1 ms |
600 KB |
// Success consists of going from failure to failure without loss of enthusiasm
#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define pb push_back
#define f first
#define s second
#define mp make_pair
#define sz(x) int(x.size())
template<class T> using V = vector<T>;
using pi = pair<int, int>;
using vi = V<int>;
using vpi = V<pi>;
using db = long double;
const int INF = 1e9;
const int B = 1e8;
const db EPS = 1e-9;
int main() {
cin.tie(0)->sync_with_stdio(0);
int N, M; cin >> N >> M;
V<vpi> adj(N); for(int i = 0; i < M; i++) {
int u, v, w; cin >> u >> v >> w; --u, --v;
adj[u].pb(mp(v, w));
adj[v].pb(mp(u, w));
}
auto C = [&](pi p, int w) {
// cout << p.f << " " << p.s << " " << w << endl;
return mp(w - p.f, -p.s);
};
cout << fixed << setprecision(10);
vi vis(N), COMP; V<set<pi>> S(N);
function<void(int)> dfs = [&](int u) {
vis[u] = 1; COMP.pb(u);
pi p = *begin(S[u]);
// cout << u << " => " << p.f << " " << p.s << endl;
for(auto& e : adj[u]) {
int v, w; tie(v, w) = e;
// cout << v << " " << w << endl;
S[v].insert(C(p, w));
if (!vis[v]) dfs(v);
}
};
V<db> ans(N, INF);
function<void(int)> get = [&](int u) {
// cout << u << endl;
for(auto& e : adj[u]) {
int v, w; tie(v, w) = e;
// cout << u << " => " << v << endl;
// cout << ans[u] << " -> " << ans[v] << endl;
db x = w - ans[u];
if (ans[v] > B) {
ans[v] = x; get(v);
} else {
if (abs(ans[v] - x) > EPS) {
cout << "NO" << nl;
exit(0-0);
}
}
}
};
for(int r = 0; r < N; r++) if (!vis[r]) {
COMP = {}; S[r].insert(mp(0, 1)); dfs(r);
// cout << endl << endl;
db x = INF; int R = -1;
for(auto& i : COMP) if (sz(S[i]) >= 2) {
// cout << i << endl;
vi pos, neg; for(auto& p : S[i]) {
// cout << p.f << " " << p.s << endl;
if (p.s == -1) neg.pb(p.f);
else pos.pb(p.f);
}
if (max(sz(pos), sz(neg)) > 1) {
cout << "NO" << nl;
exit(0-0);
}
x = db(pos.back() + neg.back()) / db(2);
// cout << x << endl;
R = i;
// cout << "DONE" << endl;
break;
}
if (R == -1) {
// cout << "R: " << r << endl;
ans[r] = 0; get(r);
vi A; for(auto& i : COMP) A.pb(int(ans[i])), ans[i] = INF;
sort(begin(A), end(A));
ans[r] = A[sz(A) / 2]; get(r);
} else {
ans[R] = x; get(R);
}
}
cout << "YES" << nl;
for(auto& x : ans) cout << x << " ";
cout << nl;
exit(0-0);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
answer = YES |
2 |
Correct |
1 ms |
348 KB |
answer = YES |
3 |
Correct |
0 ms |
344 KB |
answer = YES |
4 |
Correct |
0 ms |
348 KB |
answer = NO |
5 |
Correct |
1 ms |
600 KB |
answer = YES |
6 |
Incorrect |
1 ms |
452 KB |
participant answer is larger than the answer of jury |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
answer = YES |
2 |
Correct |
1 ms |
348 KB |
answer = YES |
3 |
Correct |
0 ms |
344 KB |
answer = YES |
4 |
Correct |
0 ms |
348 KB |
answer = NO |
5 |
Correct |
1 ms |
600 KB |
answer = YES |
6 |
Incorrect |
1 ms |
452 KB |
participant answer is larger than the answer of jury |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
answer = YES |
2 |
Correct |
1 ms |
348 KB |
answer = YES |
3 |
Correct |
0 ms |
344 KB |
answer = YES |
4 |
Correct |
0 ms |
348 KB |
answer = NO |
5 |
Correct |
1 ms |
600 KB |
answer = YES |
6 |
Incorrect |
1 ms |
452 KB |
participant answer is larger than the answer of jury |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
answer = YES |
2 |
Correct |
1 ms |
348 KB |
answer = YES |
3 |
Correct |
0 ms |
344 KB |
answer = YES |
4 |
Correct |
0 ms |
348 KB |
answer = NO |
5 |
Correct |
1 ms |
600 KB |
answer = YES |
6 |
Incorrect |
1 ms |
452 KB |
participant answer is larger than the answer of jury |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
answer = YES |
2 |
Correct |
1 ms |
348 KB |
answer = YES |
3 |
Correct |
0 ms |
344 KB |
answer = YES |
4 |
Correct |
0 ms |
348 KB |
answer = NO |
5 |
Correct |
1 ms |
600 KB |
answer = YES |
6 |
Incorrect |
1 ms |
452 KB |
participant answer is larger than the answer of jury |
7 |
Halted |
0 ms |
0 KB |
- |