이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <unordered_map>
#include <algorithm>
#include <vector>
#include <time.h>
#pragma once
#include <chrono>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
struct uint64_hash {
static inline uint64_t rotr(uint64_t x, unsigned k) {
return (x >> k) | (x << (8U * sizeof(uint64_t) - k));
}
static inline uint64_t hash_int(uint64_t x) noexcept {
auto h1 = x * (uint64_t)(0xA24BAED4963EE407);
auto h2 = rotr(x, 32U) * (uint64_t)(0x9FB21C651E98DF25);
auto h = rotr(h1 + h2, 32U);
return h;
}
size_t operator()(uint64_t x) const {
static const uint64_t FIXED_RANDOM = std::chrono::steady_clock::now().time_since_epoch().count();
return hash_int(x + FIXED_RANDOM);
}
};
template <typename K, typename V, typename Hash = uint64_hash>
using hash_map = __gnu_pbds::gp_hash_table<K, V, Hash>;
template <typename K, typename Hash = uint64_hash>
using hash_set = hash_map<K, __gnu_pbds::null_type, Hash>;
template <typename T>
using ordered_set = __gnu_pbds::tree<T, __gnu_pbds::null_type, std::less<T>, __gnu_pbds::rb_tree_tag, __gnu_pbds::tree_order_statistics_node_update>;
using namespace std;
const int MAX_CERCLE = 4e5+42, INF = 1e9;
struct Cercle{
long long xCentre, yCentre, rayon, id;
bool operator<(Cercle autre) {
if(rayon == autre.rayon)
return id < autre.id;
return rayon > autre.rayon;
}
bool intersecte(Cercle autre) {
long long xDist = xCentre - autre.xCentre, yDist = yCentre - autre.yCentre;
long long rDist = rayon + autre.rayon;
return xDist * xDist + yDist * yDist <= rDist * rDist;
}
};
int nbCercle;
Cercle cercle[MAX_CERCLE];
void input() {
cin >> nbCercle;
for(int idCercle = 0; idCercle < nbCercle; idCercle++) {
cin >> cercle[idCercle].xCentre >> cercle[idCercle].yCentre >> cercle[idCercle].rayon;
cercle[idCercle].xCentre += INF;
cercle[idCercle].yCentre += INF;
cercle[idCercle].id = idCercle;
}
sort(cercle, cercle + nbCercle);
}
hash_map<long long, vector<int>> grille;
bool enleve[MAX_CERCLE] = {0};
void ajoutCercleGrille(int idCercle, long long taille) {
if(enleve[idCercle])
return;
long long xGrille = cercle[idCercle].xCentre / taille, yGrille = cercle[idCercle].yCentre / taille;
grille[(xGrille << 32) + yGrille].push_back(idCercle);
}
void calcGrille(long long taille) {
for(int cur = 0; cur < nbCercle; cur++) {
ajoutCercleGrille(cur, taille);
}
}
int quiEnleve[MAX_CERCLE];
long long tailleGrille = (1e12);
int main() {
clock_t t = clock();
ios::sync_with_stdio(false);
cin.tie(0);
input();
for(int grand = 0; grand < nbCercle; grand++) {
if(enleve[grand])
continue;
while(tailleGrille/2 > cercle[grand].rayon) {
tailleGrille /= 2;
calcGrille(tailleGrille);
}
long long xGrille = cercle[grand].xCentre / tailleGrille, yGrille = cercle[grand].yCentre / tailleGrille;
vector<int> quiReste;
for(int type = 0; type < 2; type++) {
for(int deltaX = -2; deltaX <= 2; deltaX++) {
for(int deltaY = -2; deltaY <= 2; deltaY++) {
long long nouvX = xGrille + deltaX, nouvY = yGrille + deltaY;
if(type == 1) {
grille[(nouvX << 32) + nouvY].clear();
continue;
}
for(auto autre : grille[(nouvX << 32) + nouvY]) {
if(cercle[grand].intersecte(cercle[autre]) && !enleve[autre]) {
enleve[autre] = 1;
quiEnleve[cercle[autre].id] = cercle[grand].id;
}
if(!cercle[grand].intersecte(cercle[autre])) {
quiReste.push_back(autre);
}
}
}
}
}
for(auto nouveau : quiReste) {
ajoutCercleGrille(nouveau, tailleGrille);
}
}
for(int cur = 0; cur < nbCercle; cur++) {
cout << quiEnleve[cur]+1 << " ";
}
}
컴파일 시 표준 에러 (stderr) 메시지
circle_selection.cpp:6:9: warning: #pragma once in main file
6 | #pragma once
| ^~~~
circle_selection.cpp: In function 'int main()':
circle_selection.cpp:94:13: warning: unused variable 't' [-Wunused-variable]
94 | clock_t t = clock();
| ^
# | 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... |