# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
622432 | 2022-08-04T09:27:28 Z | PoonYaPat | City Mapping (NOI18_citymapping) | C++14 | 5 ms | 8276 KB |
#include "citymapping.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef tuple<int,int,int> t; int n; vector<int> v[1001]; vector<t> ans; ll dis[1001][1001]; void find(int x) { //have v[x] represent the node which has x as it child, know dis[x][s] int r; ll longest=0; vector<pii> temp; //dis and node in backbone vector<int> tree; for (auto s : v[x]) if (dis[x][s]>longest) longest=dis[x][s], r=s; //find backbone for (auto s : v[x]) { dis[s][r]=dis[r][s]=get_distance(s,r); if (dis[x][s]+dis[s][r]==dis[x][r]) temp.push_back(pii(dis[x][s],s)); //in backbone else tree.push_back(s); } sort(temp.begin(),temp.end()); ans.push_back(t(x,temp[0].second,temp[0].first)); for (int i=1; i<temp.size(); ++i) { ans.push_back(t(temp[i-1].second,temp[i].second,temp[i].first-temp[i-1].first)); } for (auto s : tree) { int t=dis[x][s]-(dis[x][s]+dis[s][r]-dis[x][r])/2; for (auto b : temp) { if (t==b.first) { v[b.second].push_back(s); dis[b.second][s]=dis[s][b.second]=(dis[x][s]+dis[s][r]-dis[x][r])/2; break; } } } for (auto s : temp) if (v[s.second].size()) find(s.second); } void find_roads(int N, int Q, int A[], int B[], int W[]) { n=N; //find rim int l=1,r=2; for (int x=3; x<=n; ++x) { dis[x][l]=dis[l][x]=get_distance(x,l); dis[x][r]=dis[r][x]=get_distance(r,x); if (!dis[l][r]) dis[l][r]=dis[r][l]=get_distance(l,r); if (dis[x][l]+dis[l][r]==dis[x][r]) l=x; } for (int i=1; i<=n; ++i) { if (i==l) continue; v[l].push_back(i); if (!dis[l][i]) dis[l][i]=dis[i][l]=get_distance(i,l); } find(l); for (int i=0; i<ans.size(); ++i) tie(A[i],B[i],W[i])=ans[i],cout<<A[i]<<" "<<B[i]<<" "<<W[i]<<"\n"; return; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 8276 KB | DO NOT PRINT ANYTHING TO STANDARD OUTPUT |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 8276 KB | DO NOT PRINT ANYTHING TO STANDARD OUTPUT |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 7796 KB | DO NOT PRINT ANYTHING TO STANDARD OUTPUT |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 7796 KB | DO NOT PRINT ANYTHING TO STANDARD OUTPUT |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 8276 KB | DO NOT PRINT ANYTHING TO STANDARD OUTPUT |
2 | Halted | 0 ms | 0 KB | - |