# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
48877 | 2018-05-19T11:51:33 Z | top34051 | 원 고르기 (APIO18_circle_selection) | C++17 | 3000 ms | 283536 KB |
#include<bits/stdc++.h> using namespace std; #define ll long long const int maxn = 3e5 + 5; struct node { ll x,y,r; }; int n; node p[maxn]; ll R; unordered_map<ll,unordered_map<ll,vector<int>>> a; int ok[maxn], res[maxn]; vector<int> temp; double dist(node a, node b) { return sqrt((double)(a.x-b.x)*(a.x-b.x) + (double)(a.y-b.y)*(a.y-b.y)); } int main() { scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%lld%lld%lld",&p[i].x,&p[i].y,&p[i].r); ll R = p[1].r; for(int i=1;i<=n;i++) { a[p[i].x/R][p[i].y/R].push_back(i); // printf("%lld %lld : %d\n",p[i].x/R,p[i].y/R,i); } for(int x=1;x<=n;x++) { if(ok[x]) continue; // printf("x = %d\n",x); for(ll i=p[x].x/R-2;i<=p[x].x/R+2;i++) { for(ll j=p[x].y/R-2;j<=p[x].y/R+2;j++) { for(auto y : a[i][j]) { // printf("\ty = %d\n",y); if(ok[y]) continue; if(dist(p[x],p[y])<=(double)R*2) { ok[y] = 1; res[y] = x; } else temp.push_back(y); } a[i][j] = temp; temp.clear(); } } } for(int x=1;x<=n;x++) printf("%d ",res[x]); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 248 KB | Output is correct |
2 | Correct | 2 ms | 356 KB | Output is correct |
3 | Correct | 2 ms | 432 KB | Output is correct |
4 | Incorrect | 2 ms | 472 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 209 ms | 11856 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 11856 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3075 ms | 283536 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 248 KB | Output is correct |
2 | Correct | 2 ms | 356 KB | Output is correct |
3 | Correct | 2 ms | 432 KB | Output is correct |
4 | Incorrect | 2 ms | 472 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 248 KB | Output is correct |
2 | Correct | 2 ms | 356 KB | Output is correct |
3 | Correct | 2 ms | 432 KB | Output is correct |
4 | Incorrect | 2 ms | 472 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |