# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
253165 | Saboon | 원 고르기 (APIO18_circle_selection) | C++14 | 3069 ms | 60852 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef complex<ll> poll;
const ll maxn = 3e5 + 20;
const ll inf = 1e9;
set<pair<ll,ll>> s[maxn];
ll c[maxn], r[maxn];
poll p[maxn];
ll SQ(ll x){
return x*x;
}
ll dis(poll x, poll y){
return SQ(x.real() - y.real()) + SQ(x.imag() - y.imag());
}
int main(){
ios_base::sync_with_stdio(false);
ll n;
cin >> n;
vector<ll> a;
vector<pair<ll,ll>> larger;
for (ll i = 1; i <= n; i++){
ll x, y;
cin >> x >> y >> r[i];
p[i] = poll(x,y);
a.push_back(x);
# | 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... |