# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
835551 | jamielim | 원 고르기 (APIO18_circle_selection) | C++14 | 3075 ms | 35500 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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<<31);
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);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |