Submission #272357

#TimeUsernameProblemLanguageResultExecution timeMemory
272357arnold518Graph (BOI20_graph)C++14
58 / 100
139 ms15604 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int MAXN = 1e5; int N, M; vector<pii> adj[MAXN+10]; bool vis[MAXN+10]; pii A[MAXN+10]; pii operator + (const pii &p, const pii &q) { return {p.first+q.first, p.second+q.second}; } pii operator - (const pii &p, const pii &q) { return {p.first-q.first, p.second-q.second}; } bool flag=true, chk; double val, ans[MAXN+10]; vector<int> V; void dfs(int now) { vis[now]=true; V.push_back(now); for(auto nxt : adj[now]) { if(vis[nxt.first]) { pii t=A[now]+A[nxt.first]; if(t.first==0) { if(t.second!=nxt.second) flag=false; } else { double p=(double)(nxt.second-t.second)/t.first; if(!chk) chk=true, val=p; else if(fabs(p-val)>1e-6) flag=false; } } else { A[nxt.first]=pii(0, nxt.second)-A[now]; dfs(nxt.first); } } } double f(double x) { double ret=0; for(auto it : V) ret+=fabs(A[it].first*x+A[it].second); return ret; } int main() { scanf("%d%d", &N, &M); for(int i=1; i<=M; i++) { int u, v, w; scanf("%d%d%d", &u, &v, &w); adj[u].push_back({v, w}); adj[v].push_back({u, w}); } for(int i=1; i<=N; i++) { if(vis[i]) continue; V.clear(); chk=false; A[i]=pii(1, 0); dfs(i); if(chk) { for(auto it : V) ans[it]=A[it].first*val+A[it].second; } else { double lo=-1e6, hi=1e6; for(int j=0; j<100; j++) { double m1=(lo*2+hi)/3, m2=(lo+hi*2)/3; if(f(m1)<=f(m2)) hi=m2; else lo=m1; } for(auto it : V) ans[it]=A[it].first*lo+A[it].second; } } if(!flag) printf("NO\n"); else { printf("YES\n"); for(int i=1; i<=N; i++) printf("%.10f ", ans[i]); printf("\n"); } }

Compilation message (stderr)

Graph.cpp: In function 'int main()':
Graph.cpp:59:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   59 |  scanf("%d%d", &N, &M);
      |  ~~~~~^~~~~~~~~~~~~~~~
Graph.cpp:63:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   63 |   scanf("%d%d%d", &u, &v, &w);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...