Submission #655058

# Submission time Handle Problem Language Result Execution time Memory
655058 2022-11-02T22:45:34 Z Richem Circle selection (APIO18_circle_selection) C++14
0 / 100
124 ms 11096 KB
#include <bits/stdc++.h>
using namespace std;

const int MAX_ALED = 1e5+42;

struct Aled{
    int xCentre, yCentre, rayon, id;

    bool ragequit = false;

    bool intersecte(Aled autre) {
        int x = xCentre - autre.xCentre, y = yCentre - autre.yCentre;
        return (x*x+y*y) <= (rayon + autre.rayon) * (rayon + autre.rayon);
    }
    bool operator<(Aled autre) {
        if(rayon == autre.rayon)
            return id < autre.id;
        return rayon > autre.rayon;
    }
};

struct Position{
    long long int x,y;

    long long int getId() {
        return (x << 32) + y;
    }
};

int nbAled;
Aled aled[MAX_ALED];
Aled triRayon[MAX_ALED];

void input() {
    cin >> nbAled;

    for(int iAled = 0; iAled < nbAled; iAled++) {
        cin >> aled[iAled].xCentre >> aled[iAled].yCentre >> aled[iAled].rayon;
        aled[iAled].id = iAled;
    }
    sort(aled, aled + nbAled);
}

unordered_map<long long int, vector<int>> enfer;
Position quelCase[MAX_ALED];

void calcGrille(int taille) {
    enfer.clear();
    for(int cur = 0; cur < nbAled; cur++) {
        int xCase = aled[cur].xCentre / taille, yCase = aled[cur].yCentre / taille;

        Position caseCur = {xCase, yCase};

        enfer[caseCur.getId()].push_back(cur);
        quelCase[cur] = {xCase, yCase};
    }
}

bool retire[MAX_ALED] = {0};
int rep[MAX_ALED];

int tailleGrille;

int main() {
    input();
    tailleGrille = (1 << 20);
    
    for(int curCercle = 0; curCercle < nbAled; curCercle++) {
        if(retire[curCercle])
            continue;

        while(aled[curCercle].rayon < tailleGrille) {
            tailleGrille /= 2;
            calcGrille(tailleGrille);
        }

        for(auto deltaX : {-2, -1, 0, 1, 2}) {
            for(auto deltaY : {-2, -1, 0, 1, 2}) {
                int xCaseNouv = quelCase[curCercle].x + deltaX, yCaseNouv = quelCase[curCercle].y + deltaY;
                Position caseNouv = {xCaseNouv, yCaseNouv};

                for(auto autreCercle : enfer[caseNouv.getId()]) {
                    if(!retire[autreCercle] && aled[curCercle].intersecte(aled[autreCercle])) {
                        retire[autreCercle] = 1;
                        rep[aled[autreCercle].id] = aled[curCercle].id+1;
                    }
                }
            }
        }
    }

    for(int curCercle = 0; curCercle < nbAled; curCercle++) {
        cout << rep[curCercle] << " ";
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4180 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 95 ms 10720 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4136 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 124 ms 11096 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4180 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4180 KB Output isn't correct
2 Halted 0 ms 0 KB -