Submission #622462

#TimeUsernameProblemLanguageResultExecution timeMemory
622462PoonYaPatCity Mapping (NOI18_citymapping)C++14
Compilation error
0 ms0 KiB
#include "citymapping.h" #include "grader.cpp" #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll,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; assert(0); //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; } bool rim=true; ll low=LLONG_MAX; int nn; for (int i=1; i<=n; ++i) if (i!=l) { dis[i][l]=dis[l][i]=get_distance(l,i); if (low>dis[i][l]) { low=dis[i][l]; nn=i; } } for (int i=1; i<=n; ++i) if (i!=l) { if (get_distance(l,nn)+get_distance(nn,i)!=dis[l][i]) rim=false; } assert(rim); 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); //cout<<"\n"; for (int i=0; i<ans.size(); ++i) tie(A[i],B[i],W[i])=ans[i]; return; } /* 5 500000 1 4 5 1 1 2 1 2 3 1 3 4 1 10 500000 2 1 4 678352431 4 2 867263542 3 4 986735463 5 3 564837284 6 2 103434343 6 7 127684574 8 1 765787345 1 9 578493867 2 10 678587475 10 500000 2 1 4 8 4 2 1 3 4 7 5 3 3 6 2 10 6 7 12 8 1 7 1 9 12 2 10 3 */

Compilation message (stderr)

citymapping.cpp: In function 'void find(int)':
citymapping.cpp:33:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |     for (int i=1; i<temp.size(); ++i) {
      |                   ~^~~~~~~~~~~~
citymapping.cpp: In function 'void find_roads(int, int, int*, int*, int*)':
citymapping.cpp:89:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::tuple<int, int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   89 |     for (int i=0; i<ans.size(); ++i) tie(A[i],B[i],W[i])=ans[i];
      |                   ~^~~~~~~~~~~
citymapping.cpp: In function 'void find(int)':
citymapping.cpp:38:54: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
   38 |         int t=dis[x][s]-(dis[x][s]+dis[s][r]-dis[x][r])/2;
      |                                              ~~~~~~~~^
/usr/bin/ld: /tmp/ccKRpGxM.o: in function `get_distance(int, int)':
grader.cpp:(.text+0x470): multiple definition of `get_distance(int, int)'; /tmp/ccalFfJL.o:citymapping.cpp:(.text+0xa10): first defined here
/usr/bin/ld: /tmp/ccKRpGxM.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccalFfJL.o:citymapping.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status