답안 #50000

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
50000 2018-06-06T05:07:35 Z top34051 원 고르기 (APIO18_circle_selection) C++17
컴파일 오류
0 ms 0 KB
//subtask 4
#include<bits/stdc++.h>
using namespace std;
const int maxn = 3e5 + 5;
struct node {
    int x,y,r;
};
int n;
node p[maxn];
int R;
int res[maxn];
map<int,map<int,vector<int>>> mp;
double dist(node a, node b) {
    return sqrt((a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y));
}
bool cut(node a, node b) {
    return dist(a,b) <= (double)a.r + b.r;
}
int main() {
    scanf("%d",&n);
    for(int i=1;i<=n;i++) scanf("%d%d%d",&p[i].x,&p[i].y,&p[i].r);
    R = p[1].r;
    for(int i=1;i<=n;i++) {
        int x = p[i].x/R, y = p[i].y/R;
        res[i] = i;
        for(int xx=x-2;xx<=x+2;xx++) {
            for(int yy=y-2;yy<=y+2;yy++) {
                for(auto t : mp[xx][yy]) {
                    if(cut(p[i], p[t])) {
                        res[i] = min(res[i], t);
                    }
                    counter++;
                }
            }
        }
        assert(counter<=60);
        if(res[i]==i) {
            mp[x][y].push_back(i);
            assert(mp[x][y].size()<=3);
        }
    }
    for(int i=1;i<=n;i++) printf("%d ",res[i]);
}

Compilation message

circle_selection.cpp: In function 'int main()':
circle_selection.cpp:32:21: error: 'counter' was not declared in this scope
                     counter++;
                     ^~~~~~~
circle_selection.cpp:32:21: note: suggested alternative: 'toupper'
                     counter++;
                     ^~~~~~~
                     toupper
In file included from /usr/include/c++/7/cassert:44:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:33,
                 from circle_selection.cpp:2:
circle_selection.cpp:36:16: error: 'counter' was not declared in this scope
         assert(counter<=60);
                ^
circle_selection.cpp:36:16: note: suggested alternative: 'toupper'
circle_selection.cpp:20:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&n);
     ~~~~~^~~~~~~~~
circle_selection.cpp:21:32: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for(int i=1;i<=n;i++) scanf("%d%d%d",&p[i].x,&p[i].y,&p[i].r);
                           ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~