QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#89776 | #5570. Epidemic Escape | applese | TL | 345ms | 17256kb | C++14 | 6.4kb | 2023-03-21 10:45:29 | 2023-03-21 10:45:32 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define double long double
const int maxn = 1e5 + 5;
const double eps = 1e-9;
int Dcmp(double x) {
return x < -eps ? -1 : x > eps ? 1 : 0;
}
struct Point {
double x, y;
int id;
Point(double x = 0, double y = 0, int id = 0) : x(x), y(y), id(id) {}
Point operator == (const Point &rhs) const {
return Dcmp(x - rhs.x) == 0 && Dcmp(y - rhs.y) == 0;
}
Point operator + (const Point &rhs) const {
return Point(x + rhs.x, y + rhs.y);
}
Point operator - (const Point &rhs) const {
return Point(x - rhs.x, y - rhs.y);
}
Point operator * (const double &k) const {
return Point(x * k, y * k);
}
Point operator / (const double &k) const {
return Point(x / k, y / k);
}
double operator * (const Point &rhs) const {
return x * rhs.x + y * rhs.y;
}
double operator ^ (const Point &rhs) const {
return x * rhs.y - y * rhs.x;
}
double len2() {
return x * x + y * y;
}
double len() {
return sqrt(len2());
}
Point Unit() {
return *this / len();
}
}p[maxn];
double invr = 2e4;
int n, cntp, tot, vis[maxn], q, sz[6], dismax[6], cnt[6];
vector<Point> hull[6], now;
int Left(Point a, Point b, Point c) { // b is left of ac
return Dcmp((b - a) ^ (c - a)) >= 0;
}
Point base;
vector<Point> Convex(vector<Point> a) {
int n = a.size(), cnt = 0;
if(!n)
return a;
base = a[0];
for(auto p : a)
if(make_pair(p.x, p.y) < make_pair(base.x, base.y))
base = p;
sort(a.begin(), a.end(), [](const Point &a, const Point &b) {
int d = Dcmp((a - base) ^ (b - base));
if(d)
return d > 0;
return Dcmp((a - base).len2() - (b - base).len2()) < 0;
});
if(n < 3)
return a;
vector<Point> res;
for(int i = 0; i < n; ++ i) {
while(cnt > 1 && Left(res[cnt - 2], a[i], res[cnt - 1]))
-- cnt, res.pop_back();
res.push_back(a[i]), ++ cnt;
}
int fixed = cnt;
for(int i = n - 2; ~i; -- i) {
while(cnt > fixed && Left(res[cnt - 2], a[i], res[cnt - 1]))
-- cnt, res.pop_back();
res.push_back(a[i]), ++ cnt;
}
res.pop_back();
return res;
}
double Dis(Point s, Point t, Point p) {
Point v1 = t - s, v2 = p - s;
return (v2 ^ v1) / v1.len();
}
int lp[6], rp[6];
struct Node {
double dd;
int hullid, id;
Node(double dd = 0, int hullid = 0, int id = 0) : dd(dd), hullid(hullid), id(id) {}
bool operator < (const Node &rhs) const {
int d = Dcmp(dd - rhs.dd);
return d ? d < 0 : hullid == rhs.hullid ? id < rhs.id : hullid < rhs.hullid;
}
};
priority_queue<Node>que;
vector<Point> lower[6], upper[6];
pair<double, int> Get(vector<Point> con, Point p) {
int l = 0, r = (int)con.size() - 2;
for(; l + 1 < r; ) {
int mid = (l + r) / 2;
if(Dcmp(p ^ (con[mid + 1] - con[mid])) > 0)
r = mid;
else
l = mid;
}
return max(make_pair(con[r] ^ p, r), make_pair(con[0] ^ p, 0));
}
int Gett(int id, Point v) {
auto ret = Get(upper[id], v);
ret.second = (ret.second + (int)lower[id].size() - 1) % sz[id];
ret = max(ret, Get(lower[id], v));
return ret.second;
}
int main() {
scanf("%d", &n);
for(int i = 1, x, y; i <= n; ++ i) {
scanf("%d%d", &x, &y);
if(x == 0 && y == 0) {
++ cntp;
}
else {
Point w = Point(x, y, i);
Point v = w.Unit();
double nowl = w.len();
double newl = invr * invr / nowl;
p[++ tot] = v * newl;
p[tot].id = tot;
}
}
for(int k = 0; k < 5; ++ k) {
now.clear();
for(int i = 1; i <= tot; ++ i) {
if(!vis[i]) {
now.push_back(p[i]);
}
}
hull[k] = Convex(now);
// cerr << "Hull " << k << ": " << endl;
sz[k] = hull[k].size();
if(sz[k]) {
for(auto w : hull[k]) {
vis[w.id] = 1;
// cerr << "(" << w.x << ", " << w.y << ") Id = " << w.id << endl;
}
int pos = 0;
for(int i = 0; i < sz[k]; ++ i) {
if(Dcmp(hull[k][i].x - hull[k][pos].x) > 0 || (Dcmp(hull[k][i].x - hull[k][pos].x) == 0 && Dcmp(hull[k][i].y - hull[k][pos].y) > 0)) {
pos = i;
}
}
// cerr << pos << endl;
for(int i = 0; i <= pos; ++ i) {
lower[k].push_back(hull[k][i]);
}
for(int i = pos; i < sz[k]; ++ i) {
upper[k].push_back(hull[k][i]);
}
upper[k].push_back(hull[k][0]);
}
// cerr << sz[k] << endl;
}
// cerr << "?" << endl;
scanf("%d", &q);
for(int x, y, k; q --; ) {
scanf("%d%d%d", &x, &y, &k);
if(!x && !y) {
puts("-1");
continue;
}
if(k <= cntp) {
puts("0");
continue;
}
k -= cntp;
while(!que.empty())
que.pop();
double newl = invr * invr * 4;
Point dir = Point(-y, x), v = Point(x, y).Unit();
Point now = v * newl, nowp = now + dir; // now + dir
for(int i = 0; i < 5; ++ i) {
if(!sz[i])
continue;
// fprintf(stderr, "Hull %d: \n", i);
// for(auto w : hull[i])
// fprintf(stderr, "Dis: %.15f Id: %d ", Dis(now, nowp, w), w.id), fprintf(stderr, "Cross: %.15f Id: %d\n", w ^ dir, w.id);
dismax[i] = cnt[i] = 0;
if(sz[i] > 1) {
int pos1 = Gett(i, dir);
dismax[i] = pos1;
// int d = 0;
// for(int j = 0; j < sz[i]; ++ j) {
// if(Dcmp(Dis(now, nowp, hull[i][d]) - Dis(now, nowp, hull[i][j])) < 0)
// d = j;
// }
// cerr << d << " " << dismax[i] << " " << Dis(now, nowp, hull[i][d]) << " " << Dis(now, nowp, hull[i][dismax[i]]) << endl;
// assert(Dcmp(Dis(now, nowp, hull[i][d]) - Dis(now, nowp, hull[i][dismax[i]])) == 0);
}
// cerr << dismax[i] << endl;
lp[i] = rp[i] = dismax[i];
que.push(Node(Dis(now, nowp, hull[i][dismax[i]]), i, dismax[i]));
}
double ans = 1e18;
for(int c = 1; c <= k; ++ c) {
Node w = que.top();
que.pop();
// cerr << w.dd << " " << w.hullid << " " << w.id << " " << w.dd + newl << endl;
if(Dcmp(w.dd + newl) <= 0 || Dcmp(invr * invr / (w.dd + newl) / 2 - 1e9) > 0)
break;
if(c == k) {
ans = newl + w.dd;
break;
}
int i = w.hullid, pos = w.id;
++ cnt[i];
if(cnt[i] == sz[i])
continue;
if(lp[i] == pos) {
-- lp[i];
if(lp[i] < 0)
lp[i] += sz[i];
if(lp[i] != rp[i]) {
que.push(Node(Dis(now, nowp, hull[i][lp[i]]), i, lp[i]));
}
}
if(rp[i] == pos) {
++ rp[i];
if(rp[i] >= sz[i])
rp[i] -= sz[i];
if(lp[i] != rp[i]) {
que.push(Node(Dis(now, nowp, hull[i][rp[i]]), i, rp[i]));
}
}
}
// cerr << ans << endl;
if(ans > 1e16 || Dcmp(ans) <= 0 || Dcmp(invr * invr / ans / 2 - 1e9) > 0)
puts("-1");
else
// printf("%lld\n", (long long)round(invr * invr / ans / 2 * 1e7));
printf("%.15Lf\n", invr * invr / ans / 2);
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 8276kb
input:
5 5 -3 5 4 -6 2 -5 0 4 1 2 -3 -10 1 6 -9 1
output:
8.700255424092125 3.226019562257254
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 6ms
memory: 8300kb
input:
8 4 -1 4 -8 0 9 4 -7 -5 -2 5 -5 7 5 -9 2 10 4 -8 1 7 -7 5 -10 8 2 -9 9 2 4 -7 5 -1 -10 2 6 -3 2 2 -9 3 -10 -10 1 5 9 1
output:
3.167762968124702 26.162950903902258 5.461488320163312 6.363961030678928 -1 5.289408221642574 3.726779962499649 4.609772228646444 2.929442379201411 4.761728940206488
result:
ok 10 numbers
Test #3:
score: 0
Accepted
time: 5ms
memory: 8320kb
input:
5 -4 -7 5 0 2 4 -7 -7 4 4 20 0 -5 2 -4 -7 2 -7 7 3 4 -4 3 -7 4 3 4 -4 1 2 4 1 6 -7 2 4 -4 2 4 4 3 5 4 1 -1 9 2 8 9 3 4 -4 2 6 3 3 -10 -3 2 -7 7 1 9 -4 1 -4 -7 3 -2 0 2
output:
7.000000000000000 5.130527658008168 -1 -1 -1 3.535533905932738 2.236067977499790 11.985407794480754 15.320646925708530 3.535533905932738 2.462740091320326 4.527692569068708 3.762998305872592 15.320646925708530 2.981423969999720 5.621703504797989 7.071067811865475 2.735793833832251 -1 8.125000000000000
result:
ok 20 numbers
Test #4:
score: 0
Accepted
time: 1ms
memory: 8440kb
input:
100 63 -48 20 -62 -81 -31 -17 -93 2 -74 72 25 -71 37 -71 17 56 67 -47 65 -89 14 62 30 -71 -33 14 -53 -57 -52 30 80 -14 -69 -45 -19 -54 -71 58 -20 -57 12 5 -56 -76 -2 26 61 24 60 10 -97 -63 38 17 81 -43 -38 44 35 -86 37 62 72 77 11 41 29 14 81 77 55 -54 -33 -43 -51 76 14 55 47 43 24 69 -13 16 75 11 9...
output:
26.758678868757292 29.571405997861689 24.622144504490262 27.771745654730640 26.678366712896510 24.423702460472158 28.893348196396304 29.776169557758460 31.940362970515170 27.214901602377858 31.728095045748501 27.071160551681187 25.299110030617503 26.871065152124929 28.995839453427890 28.356314246197...
result:
ok 100 numbers
Test #5:
score: 0
Accepted
time: 25ms
memory: 9292kb
input:
10000 -3 3 -6 2 -4 1 -2 -5 5 -6 -7 -2 0 7 1 -4 8 0 -4 4 -6 -2 5 0 2 9 -4 -8 0 -8 7 4 -7 2 3 3 4 1 -1 7 -4 -2 6 0 3 -5 -7 2 0 -9 7 0 7 3 -6 0 1 7 6 2 2 -9 1 8 3 -3 2 -9 4 2 4 -5 6 0 -3 6 7 3 0 8 0 -4 7 0 -5 8 5 -5 -5 -1 0 9 -4 -3 -9 -1 7 -2 -7 -2 4 0 -6 6 -3 4 6 7 2 5 -8 -5 0 5 4 0 0 -4 0 -6 -5 3 -5 ...
output:
2.154917004616741 2.167265935742733 2.067643085494710 2.111841978749801 2.111841978749801 2.111841978749801 2.124987278610405 2.121320343559643 2.027587510099407 2.092882282881672 2.141537214391802 2.061552812808830 2.154917004616741 2.000000000000000 2.121320343559643 2.167265935742733 2.0676430854...
result:
ok 10000 numbers
Test #6:
score: 0
Accepted
time: 32ms
memory: 9364kb
input:
10000 -90174 318421 -37261 138897 -260388 -302590 -906833 35071 317743 -283220 390311 -85301 880987 325969 -315218 -116767 103089 -8223 -134988 -973121 -444593 229407 -552060 549321 265624 -337609 -264546 322379 28687 110143 467764 303005 -335748 32188 213125 274156 240105 751 -81255 -129323 148563 ...
output:
218.302375937283462 481.662711989051543 792.185075601818101 579.954261849271026 807.709446267823716 242.592175484557133 882.267514766716480 530.780780259741773 664.182175961040407 796.360739767517053 662.707167898652724 639.072619278743947 125.821182715262998 745.729175266718933 732.496721810003200 ...
result:
ok 10000 numbers
Test #7:
score: 0
Accepted
time: 345ms
memory: 17256kb
input:
100000 -14593321 17388753 13488647 1223793 33907737 -8731155 -14502324 73522129 -13933178 -13752140 9462275 13349398 14636622 31405249 5160247 -69775840 -49415260 -40092130 -9926862 -25806124 14982829 -8025116 -5492901 4568113 48872077 86636033 19374632 32538501 -16657133 -11624530 -15398598 -966935...
output:
1331.497776332412405 1193.960228745127131 1171.242726187058480 1856.289036299032395 2681.882945853968047 1170.870740836292072 1128.361471572151294 1855.878337989198021 3518.324147970202143 1541.786008215450495 1515.015122316480815 1124.406566046596429 2146.716711313765066 1179.430678947102001 1164.1...
result:
ok 100000 numbers
Test #8:
score: -100
Time Limit Exceeded
input:
100000 -60674143 79489917 99210432 12541486 -99948887 -3196593 57015830 -82153478 10407645 99456921 -90320128 42921703 93983821 34161956 96773928 -25195355 69603194 71801068 27259746 -96212811 96031961 27890165 76618755 -64261689 -99095784 13417302 -95521354 -29591717 -34815155 -93743823 -93393132 -...
output:
49999995.835242208544514 49999995.899270624966448 49999995.314283735584468 49999996.037513797342399 49999994.559039488194685 49999996.485712719353614 49999995.510734555118688 49999995.136750403704355 49999995.724647671479033 49999996.637052616912115 49999997.254053747212311 49999994.794780464701034 ...