# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
835550 | 2023-08-23T15:39:59 Z | jamielim | 원 고르기 (APIO18_circle_selection) | C++14 | 3000 ms | 91892 KB |
#include <bits/stdc++.h> using namespace std; #define fi first #define se second #define mp make_pair #define pb emplace_back #define ALL(x) x.begin(),x.end() #define SZ(x) (int)x.size() typedef long long ll; typedef pair<int,int> ii; typedef pair<ii,ii> i4; typedef vector<int> vi; const int MOD=1000000007; const int INF=1012345678; const ll LLINF=1012345678012345678LL; const double PI=3.1415926536; const double EPS=1e-14; int n; i4 arr[300005]; int ans[300005]; set<i4> pq; int scale=(1<<30); map<ii,vector<int> > m; inline void downscale(){ scale/=2; m.clear(); for(i4 i:pq){ m[mp(i.se.fi/scale,i.se.se/scale)].pb(-i.fi.se); } } inline bool intersect(int a,int b){ ll dx=arr[a].se.fi-arr[b].se.fi; ll dy=arr[a].se.se-arr[b].se.se; ll r=arr[a].fi.fi+arr[b].fi.fi; return (dx*dx<=r*r-dy*dy); } int main(){ scanf("%d",&n); for(int i=0;i<n;i++){ scanf("%d%d%d",&arr[i].se.fi,&arr[i].se.se,&arr[i].fi.fi); arr[i].se.fi+=INF;arr[i].se.se+=INF; arr[i].fi.se=-i; pq.insert(arr[i]); } memset(ans,-1,sizeof(ans)); downscale(); while(!pq.empty()){ auto it=pq.end();--it; i4 cur=(*it);pq.erase(it); int index=-cur.fi.se; if(ans[index]!=-1)continue; ans[index]=index; while(scale>cur.fi.fi){ downscale(); } int x=cur.se.fi/scale,y=cur.se.se/scale; for(int i=x-2;i<=x+2;i++){ for(int j=y-2;j<=y+2;j++){ vector<int> v1=m[mp(i,j)]; vector<int> v2; for(int k:v1){ if(intersect(k,index)){ i4 link=arr[k]; pq.erase(link); ans[k]=index; }else{ v2.pb(k); } } swap(m[mp(i,j)],v2); } } } for(int i=0;i<n;i++)printf("%d ",ans[i]+1); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 1364 KB | Output is correct |
2 | Correct | 1 ms | 1364 KB | Output is correct |
3 | Correct | 1 ms | 1492 KB | Output is correct |
4 | Correct | 1 ms | 1364 KB | Output is correct |
5 | Correct | 1 ms | 1364 KB | Output is correct |
6 | Correct | 1 ms | 1364 KB | Output is correct |
7 | Correct | 1 ms | 1492 KB | Output is correct |
8 | Correct | 1 ms | 1364 KB | Output is correct |
9 | Correct | 1 ms | 1364 KB | Output is correct |
10 | Incorrect | 1 ms | 1492 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 390 ms | 29404 KB | Output is correct |
2 | Incorrect | 445 ms | 27172 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 1492 KB | Output is correct |
2 | Incorrect | 1743 ms | 91892 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3040 ms | 58044 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 1364 KB | Output is correct |
2 | Correct | 1 ms | 1364 KB | Output is correct |
3 | Correct | 1 ms | 1492 KB | Output is correct |
4 | Correct | 1 ms | 1364 KB | Output is correct |
5 | Correct | 1 ms | 1364 KB | Output is correct |
6 | Correct | 1 ms | 1364 KB | Output is correct |
7 | Correct | 1 ms | 1492 KB | Output is correct |
8 | Correct | 1 ms | 1364 KB | Output is correct |
9 | Correct | 1 ms | 1364 KB | Output is correct |
10 | Incorrect | 1 ms | 1492 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 1364 KB | Output is correct |
2 | Correct | 1 ms | 1364 KB | Output is correct |
3 | Correct | 1 ms | 1492 KB | Output is correct |
4 | Correct | 1 ms | 1364 KB | Output is correct |
5 | Correct | 1 ms | 1364 KB | Output is correct |
6 | Correct | 1 ms | 1364 KB | Output is correct |
7 | Correct | 1 ms | 1492 KB | Output is correct |
8 | Correct | 1 ms | 1364 KB | Output is correct |
9 | Correct | 1 ms | 1364 KB | Output is correct |
10 | Incorrect | 1 ms | 1492 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |