# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
90978 | 2018-12-25T11:30:16 Z | tincamatei | 원 고르기 (APIO18_circle_selection) | C++14 | 3000 ms | 69228 KB |
#include <bits/stdc++.h> using namespace std; unordered_map<int, unordered_map<int, vector<int> > > grid; const int MAX_N = 300000; int xc[1+MAX_N], yc[1+MAX_N], rc[1+MAX_N]; int rez[1+MAX_N]; int poz[1+MAX_N]; void rescale(int n, int d) { grid.clear(); for(int i = 1; i <= n; ++i) if(rez[i] == 0) grid[xc[i] / d][yc[i] / d].push_back(i); } bool cmp(int a, int b) { return rc[a] > rc[b] || (rc[a] == rc[b] && a < b); } double dist(int a, int b) { return sqrt((long long)(xc[a] - xc[b]) * (xc[a] - xc[b]) + (long long)(yc[a] - yc[b]) * (yc[a] - yc[b])); } int main() { #ifdef HOME FILE *fin = fopen("input.in", "r"); FILE *fout = fopen("output.out", "w"); #else FILE *fin = stdin; FILE *fout = stdout; #endif int n; int mnx, mny; mnx = mny = 1000000000; fscanf(fin, "%d", &n); for(int i = 1; i <= n; ++i) { fscanf(fin, "%d%d%d", &xc[i], &yc[i], &rc[i]); mnx = min(mnx, xc[i]); mny = min(mny, yc[i]); poz[i - 1] = i; } for(int i = 1; i <= n; ++i) { xc[i] -= mnx; yc[i] -= mny; } sort(poz, poz + n, cmp); int lastr = (1 << 30); for(int i = 0; i < n; ++i) { int p = poz[i]; if(rez[p] == 0) { while(rc[p] < lastr) { lastr /= 2; rescale(n, lastr); } int x = xc[p] / lastr, y = yc[p] / lastr; for(int i = x - 2; i <= x + 2; ++i) for(int j = y - 2; j <= y + 2; ++j) for(auto it: grid[i][j]) if(rez[it] == 0 && dist(p, it) <= rc[p] + rc[it]) rez[it] = p; } } for(int i = 1; i <= n; ++i) fprintf(fout, "%d ", rez[i]); #ifdef HOME fclose(fin); fclose(fout); #endif return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 448 KB | Output is correct |
4 | Correct | 2 ms | 464 KB | Output is correct |
5 | Correct | 2 ms | 524 KB | Output is correct |
6 | Correct | 2 ms | 696 KB | Output is correct |
7 | Correct | 2 ms | 696 KB | Output is correct |
8 | Correct | 2 ms | 696 KB | Output is correct |
9 | Correct | 2 ms | 696 KB | Output is correct |
10 | Incorrect | 2 ms | 696 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 212 ms | 8680 KB | Output is correct |
2 | Incorrect | 219 ms | 10212 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 10212 KB | Output is correct |
2 | Incorrect | 2526 ms | 69228 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3054 ms | 69228 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 448 KB | Output is correct |
4 | Correct | 2 ms | 464 KB | Output is correct |
5 | Correct | 2 ms | 524 KB | Output is correct |
6 | Correct | 2 ms | 696 KB | Output is correct |
7 | Correct | 2 ms | 696 KB | Output is correct |
8 | Correct | 2 ms | 696 KB | Output is correct |
9 | Correct | 2 ms | 696 KB | Output is correct |
10 | Incorrect | 2 ms | 696 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 448 KB | Output is correct |
4 | Correct | 2 ms | 464 KB | Output is correct |
5 | Correct | 2 ms | 524 KB | Output is correct |
6 | Correct | 2 ms | 696 KB | Output is correct |
7 | Correct | 2 ms | 696 KB | Output is correct |
8 | Correct | 2 ms | 696 KB | Output is correct |
9 | Correct | 2 ms | 696 KB | Output is correct |
10 | Incorrect | 2 ms | 696 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |