# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
658175 | Richem | Circle selection (APIO18_circle_selection) | C++14 | 3096 ms | 21136 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <unordered_map>
#include <algorithm>
#include <vector>
#define int long long
using namespace std;
const int MAX_CERCLE = 3e5+42, INF = 1e9;
struct Cercle{
int xCentre, yCentre, rayon, id;
bool operator<(Cercle autre) {
if(rayon == autre.rayon)
return id < autre.id;
return rayon > autre.rayon;
}
bool intersecte(Cercle autre) {
int xDist = xCentre - autre.xCentre, yDist = yCentre - autre.yCentre;
int rDist = rayon + autre.rayon;
return xDist * xDist + yDist * yDist <= rDist * rDist;
}
};
int nbCercle;
Cercle cercle[MAX_CERCLE];
# | 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... |