# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
687583 |
2023-01-26T15:37:42 Z |
balbit |
Plot (POI11_wyk) |
C++14 |
|
16786 ms |
65536 KB |
#include <bits/stdc++.h>
#define int ll
using namespace std;
#define ll long long
#define y1 zck_is_king
#define pii pair<ll, ll>
#define ull unsigned ll
#define f first
#define s second
#define ALL(x) x.begin(),x.end()
#define SZ(x) (int)x.size()
#define SQ(x) (x)*(x)
#define MN(a,b) a = min(a,(__typeof__(a))(b))
#define MX(a,b) a = max(a,(__typeof__(a))(b))
#define pb push_back
#define REP(i,n) for (int i = 0; i<n; ++i)
#define FOR(i,a,b) for (int i = a; i<b; ++i)
#define RREP(i,n) for (int i = n-1; i>=0; --i)
#define REP1(i,n) for (int i = 1; i<=n; ++i)
#define SORT_UNIQUE(c) (sort(c.begin(),c.end()), c.resize(distance(c.begin(),unique(c.begin(),c.end()))))
#ifdef BALBIT
#define IOS()
#define bug(...) fprintf(stderr,"#%d (%s) = ",__LINE__,#__VA_ARGS__),_do(__VA_ARGS__);
template<typename T> void _do(T &&x){cerr<<x<<endl;}
template<typename T, typename ...S> void _do(T &&x, S &&...y){cerr<<x<<", ";_do(y...);}
#else
#define IOS() ios_base::sync_with_stdio(0);cin.tie(0);
#define endl '\n'
#define bug(...)
#endif
const int iinf = 1e9+10;
const ll inf = 0x3f3f3f3f3f3f3f3f;
const ll mod = 1e9+7 ;
void GG(){cout<<"0\n"; exit(0);}
ll mpow(ll a, ll n, ll mo = mod){ // a^n % mod
ll re=1;
while (n>0){
if (n&1) re = re*a %mo;
a = a*a %mo;
n>>=1;
}
return re;
}
ll inv (ll b, ll mo = mod){
if (b==1) return b;
return (mo-mo/b) * inv(mo%b,mo) % mo;
}
const int maxn = 1e5+5;
struct Pt{
double x,y;
Pt operator - (const Pt & b) {
return {x-b.x, y-b.y};
}
Pt operator + (const Pt & b) {
return {x+b.x, y+b.y};
}
Pt operator * (double d) {
return {d*x, d*y};
}
bool operator < (const Pt & b) {
return make_pair(x,y) < make_pair(b.x, b.y);
}
bool operator == (const Pt & b) {
return make_pair(x,y) == make_pair(b.x, b.y);
}
double operator ^ (Pt b) {
return x * b.y - y * b.x;
}
double len() {
return x*x+y*y;
}
Pt rot90(){
return {-y,x};
}
void dump(){
cerr<<"("<<x<<", "<<y<<")"<<endl;
}
void in(){
cin>>x>>y;
}
};
double eps = 1e-8;
struct Circle{
Pt o; double R;
bool contains(Pt p) {
return (o - p).len() <= R+eps;
}
void dump(){
cerr<<"Cir: "<<o.x<<" "<<o.y<<" "<<sqrt(R)<<endl;
}
};
Pt BAD = {-1029.44342, 10289.313131};
Pt its(Pt a, Pt b, Pt c, Pt d) {
Pt ab = b-a, ac = c-a, ad = d-a, cd = d-c;
if ((ab ^ cd) == 0) return BAD; // parallel lines, don't really care about intersection
double rat = (ac ^ ab) / ((ac ^ ab) + (ab ^ ad));
return c + (cd) * rat;
}
Pt midpoint(Pt a, Pt b) {
return (a + b) * 0.5;
}
Circle getcir(vector<Pt> v){
sort(ALL(v)); v.resize(unique(ALL(v)) - v.begin());
if (SZ(v) == 3) {
Pt a=v[0],b=v[1],c=v[2];
Pt ab2 = midpoint(a,b), bc2 = midpoint(b,c);
Pt abr = (b-a).rot90() + ab2, bcr = (c-b).rot90() + bc2;
Pt O = its(ab2, abr, bc2, bcr);
if (O == BAD) {
O = midpoint(v[0], v[2]);
}
return {O, (O - v[0]).len()};
}
else if (SZ(v) == 2) {
Pt O = midpoint(v[0], v[1]);
return {O, (O-v[0]).len()};
}else if (SZ(v) == 1){
return {v[0], 0};
}else {
return {BAD, 0};
}
}
namespace WW{
vector<Pt> v;
Circle Weltzl(int idx, vector<Pt> r){
if (idx < 0 || SZ(r) == 3) {
bug("Hmm", idx, SZ(r));
Circle rr = getcir(r);
rr.dump();
return rr;
}else{
Pt pp = v[idx];
Circle D = Weltzl(idx-1,r);
if (D.contains(pp)) return D;
else {
r.push_back(pp);
return Weltzl(idx-1,r);
}
}
}
}
Pt A[maxn];
map<pii, Circle> memo;
Circle getenc(int L, int R){
if (L == R) return Circle{A[L], 0};
bug("in");
if (memo.count({L,R})) return memo[{L,R}];
WW::v.clear();
FOR(i,L,R+1) {
WW::v.push_back(A[i]);
}
random_shuffle(ALL(WW::v));
memo[{L,R}] = WW::Weltzl(R-L, vector<Pt>());
bug("out");
return memo[{L,R}];
}
signed main(){
IOS();
Pt a = {2,0}, b = {0,4}, c = {4,4}, d = {3,0};
Circle cc = getcir({a,b,c});
cc.dump();
// Pt I = its(a,b,c,d);
// I.dump();
// WW::v = {a,b,c,d};
// Circle cc = WW::Weltzl(3, vector<Pt>());
// cc.o.dump();
// bug(cc.R);
int n,M; cin>>n>>M;
REP(i,n) A[i].in();
double dl = 0, dr = 4e12;
vector<pii> ans;
REP(round, 100) {
double dm = (dl + dr) / 2;
bool OK = 0;
int at = 0;
int took = 0;
vector<pii> pairs;
pairs.clear();
while (at < n) {
if (took >= M) {
OK = 0; break;
}
int fac = 1;
for (; at + fac <= n; fac *= 2) {
if (getenc(at, min(at + fac, n) - 1).R > dm) break;
}
int bl = at + fac/2, br = min(at + fac, n) - 1 + 1;
while (bl != br) {
int bm = (bl + br) / 2;
if (getenc(at, bm).R > dm) {
br = bm;
}else{
bl = bm + 1;
}
}
pairs.pb({at, bl-1});
at = bl;
++took;
}
if (at >= n) OK = 1;
bug(dl, dr, dm, OK);
bug(at, took);
if (OK) {
bug(SZ(pairs));
ans = pairs;
dr = dm;
}else{
dl = dm;
}
}
cout<<setprecision(10)<<fixed;
cout<<sqrt(dl+eps)<<endl;
cout<<SZ(ans)<<endl;
for (pii p : ans) {
bug(p.f, p.s);
Circle gt = getenc(p.f, p.s);
cout<<gt.o.x<<' '<<gt.o.y<<endl;
}
}
Compilation message
wyk.cpp: In function 'int main()':
wyk.cpp:184:41: warning: unused variable 'd' [-Wunused-variable]
184 | Pt a = {2,0}, b = {0,4}, c = {4,4}, d = {3,0};
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Nieprawidlowa wartosc r |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
340 KB |
Output is correct |
2 |
Correct |
8 ms |
336 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
212 KB |
Output is correct |
2 |
Correct |
5 ms |
336 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
53 ms |
384 KB |
Output is correct |
2 |
Correct |
57 ms |
500 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
147 ms |
1072 KB |
Output is correct |
2 |
Incorrect |
2 ms |
468 KB |
Nieprawidlowa wartosc r |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
418 ms |
1712 KB |
Output is correct |
2 |
Correct |
383 ms |
1532 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
324 ms |
1420 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
178 ms |
1052 KB |
Output is correct |
2 |
Correct |
230 ms |
1132 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1948 ms |
6692 KB |
Output is correct |
2 |
Correct |
3057 ms |
10192 KB |
Output is correct |
3 |
Correct |
4346 ms |
14280 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2720 ms |
19208 KB |
Output is correct |
2 |
Correct |
3892 ms |
23000 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11602 ms |
55716 KB |
Output is correct |
2 |
Correct |
12786 ms |
51972 KB |
Output is correct |
3 |
Incorrect |
7143 ms |
47048 KB |
Nieprawidlowa wartosc r |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9103 ms |
35516 KB |
Output is correct |
2 |
Correct |
9058 ms |
34384 KB |
Output is correct |
3 |
Correct |
16786 ms |
65536 KB |
Output is correct |
4 |
Correct |
2743 ms |
30496 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
139 ms |
23660 KB |
Nieprawidlowa wartosc r |
2 |
Halted |
0 ms |
0 KB |
- |