답안 #917371

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
917371 2024-01-28T03:34:01 Z NK_ Graph (BOI20_graph) C++17
0 / 100
1 ms 348 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 db INF = 1e11;
const db B = 1e10;
const db EPS = 1e-15;
const db BEPS = 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;
			db bst = -INF, val = INF;
			auto check = [&](db x) {
				ans[r] = x; get(r);
				db cost = 0; for(auto& i : COMP) cost += abs(ans[i]), ans[i] = INF;
				// cout << x << " => " << cost << endl;
				if (cost + EPS < val) bst = x, val = cost;
				return cost;
			};

			db lo = -INF, hi = INF;
			for(int t = 0; t < 300; t++) {
				db mid = (lo + hi) / 2;
				if (check(mid) < check(mid + BEPS)) hi = mid;
				else lo = mid;
			}

			// cout << bst << endl;
			ans[r] = bst; get(r);
		} else {
			ans[R] = x; get(R);
		}
	}

	cout << "YES" << nl;
	for(auto& x : ans) cout << x << " ";
	cout << nl;
	
	exit(0-0);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB answer = YES
2 Correct 0 ms 348 KB answer = YES
3 Correct 0 ms 348 KB answer = YES
4 Correct 0 ms 348 KB answer = NO
5 Correct 1 ms 348 KB answer = YES
6 Incorrect 0 ms 348 KB participant answer is larger than the answer of jury
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB answer = YES
2 Correct 0 ms 348 KB answer = YES
3 Correct 0 ms 348 KB answer = YES
4 Correct 0 ms 348 KB answer = NO
5 Correct 1 ms 348 KB answer = YES
6 Incorrect 0 ms 348 KB participant answer is larger than the answer of jury
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB answer = YES
2 Correct 0 ms 348 KB answer = YES
3 Correct 0 ms 348 KB answer = YES
4 Correct 0 ms 348 KB answer = NO
5 Correct 1 ms 348 KB answer = YES
6 Incorrect 0 ms 348 KB participant answer is larger than the answer of jury
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB answer = YES
2 Correct 0 ms 348 KB answer = YES
3 Correct 0 ms 348 KB answer = YES
4 Correct 0 ms 348 KB answer = NO
5 Correct 1 ms 348 KB answer = YES
6 Incorrect 0 ms 348 KB participant answer is larger than the answer of jury
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB answer = YES
2 Correct 0 ms 348 KB answer = YES
3 Correct 0 ms 348 KB answer = YES
4 Correct 0 ms 348 KB answer = NO
5 Correct 1 ms 348 KB answer = YES
6 Incorrect 0 ms 348 KB participant answer is larger than the answer of jury
7 Halted 0 ms 0 KB -