답안 #973805

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
973805 2024-05-02T11:11:39 Z NotLinux Graph (BOI20_graph) C++17
0 / 100
2 ms 3420 KB
//author : FatihCihan
#include <bits/stdc++.h>
using namespace std;
#define all(v) v.begin() , v.end()
#define sz(a) (int)a.size()
const int N = 1e5 + 7;
const int inf = 1e9 + 7;
const double EPS = 0.000001;
const double INF = 1e9 + 7;
int n,m;
vector < pair < int , int > > graph[N];
pair < int , int > mem[N];//ax + b
void solve(){
	cin >> n >> m;
	for(int i = 0;i<=n;i++)mem[i] = {inf , inf};
	for(int i = 0;i<m;i++){
		int a,b,c;
		cin >> a >> b >> c;
		graph[a].push_back({b , c});
		graph[b].push_back({a , c});
	}
	queue < pair < int , pair < int , int > > > q;
	q.push({1 , {1 , 0}});
	set < double > possible;
	while(sz(q)){
		int node = q.front().first;
		pair < int , int > eq = q.front().second;
		q.pop();
		if(mem[node] != pair < int , int >{inf , inf}){// check whether it matches or not
			if(mem[node].first == eq.first and mem[node].second != eq.second){
				cout << "NO" << endl;
				return;
			}
			else if(mem[node].first == eq.first){
				37;
			}
			else{
				possible.insert((double)(mem[node].second - eq.second) / (double)(eq.first - mem[node].first));
			}
		}
		else{
			mem[node] = eq;
			// cout << node << " : " << eq.first << " , " << eq.second << endl;;
			for(auto itr : graph[node]){
				q.push({itr.first , {-eq.first , itr.second - eq.second}});
			}
		}
	}
	// cout << "possible : ";for(auto itr : possible)cout << itr << " ";cout << endl;
	auto answer = [&](double x){
		cout << "YES" << endl;
		for(int i = 1;i<=n;i++){
			cout << fixed << setprecision(6) << (double)mem[i].first * x + (double)mem[i].second << ' ';
		}
		cout << endl;
	};
	if(sz(possible) > 1){
		cout << "NO" << endl;
		return;
	}
	else if(sz(possible) == 1){
		// double ret = 0 , x = *possible.begin();
		// for(int i = 1;i<=n;i++){
		// 	ret += abs((double)mem[i].first * x + (double)mem[i].second);
		// }
		// cout << ret << endl;
		answer(*possible.begin());
	}
	else{
		// binary search ?
		auto check = [&](double x){
			double ret = 0;
			for(int i = 1;i<=n;i++){
				ret += abs((double)mem[i].first * x + (double)mem[i].second);
			}	
			return ret;
		};
		double l = 0 , r = INF;
		while(abs(l - r) > EPS){
			double mid = (l + r) / 2;
			if(check(mid) < check(mid + EPS)){
				r = mid;				
			}
			else{
				l = mid + EPS;
			}
		}
		// cout << check(l) << endl;
		answer(l);
	}
}
signed main(){
	ios_base::sync_with_stdio(0);cin.tie(0);
	int testcase = 1;//cin >> testcase;
	while(testcase--)solve();
	cerr << 1000.0 * clock() / CLOCKS_PER_SEC << " ms" << endl;
}

Compilation message

Graph.cpp: In function 'void solve()':
Graph.cpp:35:5: warning: statement has no effect [-Wunused-value]
   35 |     37;
      |     ^~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 3420 KB answer = YES
2 Correct 1 ms 3420 KB answer = YES
3 Correct 2 ms 3164 KB answer = YES
4 Correct 1 ms 3420 KB answer = NO
5 Incorrect 1 ms 3420 KB Sum of endpoints for edge (5; 3) differs from the expected value 2.
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 3420 KB answer = YES
2 Correct 1 ms 3420 KB answer = YES
3 Correct 2 ms 3164 KB answer = YES
4 Correct 1 ms 3420 KB answer = NO
5 Incorrect 1 ms 3420 KB Sum of endpoints for edge (5; 3) differs from the expected value 2.
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 3420 KB answer = YES
2 Correct 1 ms 3420 KB answer = YES
3 Correct 2 ms 3164 KB answer = YES
4 Correct 1 ms 3420 KB answer = NO
5 Incorrect 1 ms 3420 KB Sum of endpoints for edge (5; 3) differs from the expected value 2.
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 3420 KB answer = YES
2 Correct 1 ms 3420 KB answer = YES
3 Correct 2 ms 3164 KB answer = YES
4 Correct 1 ms 3420 KB answer = NO
5 Incorrect 1 ms 3420 KB Sum of endpoints for edge (5; 3) differs from the expected value 2.
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 3420 KB answer = YES
2 Correct 1 ms 3420 KB answer = YES
3 Correct 2 ms 3164 KB answer = YES
4 Correct 1 ms 3420 KB answer = NO
5 Incorrect 1 ms 3420 KB Sum of endpoints for edge (5; 3) differs from the expected value 2.
6 Halted 0 ms 0 KB -