Submission #50099

#TimeUsernameProblemLanguageResultExecution timeMemory
50099zetapiCircle selection (APIO18_circle_selection)C++14
30 / 100
3071 ms148360 KiB
#include <bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define int long long #define itr ::iterator typedef pair<int,int> pii; const int MAX=4e5; const int INF=1e12; set<int> st; map<int,int> maps; vector< vector<pii> > vec(MAX); int N,mnx,mny,ptr,X[MAX],Y[MAX],R[MAX],par[MAX],block[MAX][2]; bool ok(int F,int S) { if((X[F]-X[S])*(X[F]-X[S])+(Y[F]-Y[S])*(Y[F]-Y[S])>(R[F]+R[S])*(R[F]+R[S])) return false; return true; } signed main() { ios_base::sync_with_stdio(false); /*cin.tie(0); cout.tie(0);*/ /* input 11 9 9 2 13 2 1 11 8 2 3 3 2 3 12 1 12 14 1 9 8 5 2 8 2 5 2 1 14 4 2 14 14 1 */ priority_queue< pair<int,int> > qu; mnx=INF; mny=INF; int k=-INF; cin>>N; for(int A=1;A<=N;A++) { cin>>X[A]>>Y[A]>>R[A]; mnx=min(mnx,X[A]); mnx=min(mnx,Y[A]); k=max(k,R[A]); qu.push(mp(R[A],-A)); } for(int A=1;A<=N;A++) { X[A]-=mnx; Y[A]-=mnx; block[A][0]=X[A]/k; block[A][1]=Y[A]/k; st.insert(block[A][1]); } for(auto A:st) maps[A]=++ptr; for(int A=1;A<=N;A++) vec[maps[block[A][1]]].pb(mp(block[A][0],A)); //for(int A=1;A<=N;A++) while(!qu.empty()) { int A=-qu.top().second; qu.pop(); if(par[A]) continue; par[A]=A; for(int B,C=block[A][1]-2;C<=block[A][1]+2;C++) { B=maps[C]; if(vec[B].empty()) continue; pii lol=mp(block[A][0]-2,0); for(vector<pii> itr it=vec[B].begin();it!=vec[B].end();it++) { if(par[it->second]) continue; if(ok(A,it->second)) par[it->second]=A; } } } for(int A=1;A<=N;A++) cout<<par[A]<<" "; return 0; }

Compilation message (stderr)

circle_selection.cpp: In function 'int main()':
circle_selection.cpp:87:8: warning: variable 'lol' set but not used [-Wunused-but-set-variable]
    pii lol=mp(block[A][0]-2,0);
        ^~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...