AtCoder ABC 365G 凸包 + 二分

2024-06-19 15:52
文章标签 二分 atcoder abc 凸包 365g

本文主要是介绍AtCoder ABC 365G 凸包 + 二分,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题意

AtCoder ABC 365G Freestyle

题解

考虑任两种操作 ( A i , B i ) (A_{i},B_{i}) (Ai,Bi) ( A j , B j ) (A_{j},B_{j}) (Aj,Bj),则他们的任意组合可以表示为 ( t A i + ( 1 − t ) A j , t B i + ( 1 − t ) B j ) \big(tA_{i}+(1-t)A_{j},tB_{i}+(1-t)B_{j}\big) (tAi+(1t)Aj,tBi+(1t)Bj),那么将其看作二维平面的点,即 x = B , y = A x = B, y = A x=B,y=A,则这两种操作对应点的连线都可以被取到。拓展到两个点以上的情况,则可以任取这些点构成的凸包内的任一点。

对于约束 D y − C x ≤ 0 Dy - Cx \leq 0 DyCx0,则可以取使得 y / x y/x y/x最小的节点 s s s,若此节点不满足约束条件,则任一节点都不满足条件。对于最小化时间,则转化为最大化 x x x,那么可以取使 x x x最大化的节点 t t t,若 t t t满足约束条件,则单位为 t t t对应的时间。

其余情况,我们考虑凸包 s → t s\rightarrow t st的节点,二分满足约束条件的节点,最后再二分该节点与凸包上次一节点的线性组合。总时间复杂度 O ( n + q log ⁡ n ) O(n + q\log n) O(n+qlogn)

#include <bits/stdc++.h>
using namespace std;
template <typename T>
struct Point {T x, y;Point operator+(Point rhs) {return {x + rhs.x, y + rhs.y};}Point operator-(Point rhs) {return {x - rhs.x, y - rhs.y};}T dot(Point rhs) {return x * rhs.x + y * rhs.y;}T det(Point rhs) {return x * rhs.y - y * rhs.x;}
};int main() {ios::sync_with_stdio(false);cin.tie(nullptr);int n;cin >> n;using P = Point<long long>;vector<P> ps(n);for (int i = 0; i < n; ++i) {cin >> ps[i].y >> ps[i].x;}auto get_convex_hull = [&]() {sort(ps.begin(), ps.end(), [&](const auto& lhs, const auto& rhs) {if (lhs.x != rhs.x) {return lhs.x < rhs.x;}return lhs.y < rhs.y;});vector<P> qs(n * 2);int k = 0;for (int i = 0; i < n; ++i) {while (k > 1 && (qs[k - 1] - qs[k - 2]).det(ps[i] - qs[k - 1]) <= 0) {k -= 1;}qs[k++] = ps[i];}for (int i = n - 2, t = k; i >= 0; --i) {while (k > t && (qs[k - 1] - qs[k - 2]).det(ps[i] - qs[k - 1]) <= 0) {k -= 1;}qs[k++] = ps[i];}qs.resize(k - 1);return qs;};if (n > 1) {ps = get_convex_hull();n = ps.size();}int s = -1, t = -1;for (int i = 0; i < n; ++i) {if (s == -1 || ps[i].y * ps[s].x < ps[s].y * ps[i].x) {s = i;}if (t == -1 || ps[t].x < ps[i].x) {t = i;}}int q;cin >> q;while (q--) {int c, d;cin >> c >> d;auto judge = [&](P& p) {return d * p.y - c * p.x <= 0;};if (!judge(ps[s])) {cout << -1 << '\n';continue;}if (judge(ps[t])) {cout << fixed << setprecision(11) << (double)d / ps[t].x << '\n';continue;}auto get_idx = [&]() {int lb = s, ub = t;while (ub - lb > 1) {int mid = (lb + ub) / 2;if (judge(ps[mid])) {lb = mid;} else {ub = mid;}}return lb;};int idx = get_idx();double lb = 0, ub = 1;for (int i = 0; i < 50; ++i) {double mid = (lb + ub) / 2;double x = ps[idx].x + (ps[(idx + 1) % n].x - ps[idx].x) * mid;double y = ps[idx].y + (ps[(idx + 1) % n].y - ps[idx].y) * mid;if (d * y - c * x <= 0) {lb = mid;} else {ub = mid;}}double x = ps[idx].x + (ps[(idx + 1) % n].x - ps[idx].x) * lb;cout << fixed << setprecision(11) << d / x << '\n';}return 0;
}

这篇关于AtCoder ABC 365G 凸包 + 二分的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1075466

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu2289(简单二分)

虽说是简单二分,但是我还是wa死了  题意:已知圆台的体积,求高度 首先要知道圆台体积怎么求:设上下底的半径分别为r1,r2,高为h,V = PI*(r1*r1+r1*r2+r2*r2)*h/3 然后以h进行二分 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#includ

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

poj 2976 分数规划二分贪心(部分对总体的贡献度) poj 3111

poj 2976: 题意: 在n场考试中,每场考试共有b题,答对的题目有a题。 允许去掉k场考试,求能达到的最高正确率是多少。 解析: 假设已知准确率为x,则每场考试对于准确率的贡献值为: a - b * x,将贡献值大的排序排在前面舍弃掉后k个。 然后二分x就行了。 代码: #include <iostream>#include <cstdio>#incl

poj 3104 二分答案

题意: n件湿度为num的衣服,每秒钟自己可以蒸发掉1个湿度。 然而如果使用了暖炉,每秒可以烧掉k个湿度,但不计算蒸发了。 现在问这么多的衣服,怎么烧事件最短。 解析: 二分答案咯。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <c

poj 3258 二分最小值最大

题意: 有一些石头排成一条线,第一个和最后一个不能去掉。 其余的共可以去掉m块,要使去掉后石头间距的最小值最大。 解析: 二分石头,最小值最大。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <c

poj 2187 凸包or旋转qia壳法

题意: 给n(50000)个点,求这些点与点之间距离最大的距离。 解析: 先求凸包然后暴力。 或者旋转卡壳大法。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <s

poj 2594 二分图最大独立集

题意: 求一张图的最大独立集,这题不同的地方在于,间接相邻的点也可以有一条边,所以用floyd来把间接相邻的边也连起来。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <sta

poj 3692 二分图最大独立集

题意: 幼儿园里,有G个女生和B个男生。 他们中间有女生和女生认识,男生男生认识,也有男生和女生认识的。 现在要选出一些人,使得这里面的人都认识,问最多能选多少人。 解析: 反过来建边,将不认识的男生和女生相连,然后求一个二分图的最大独立集就行了。 下图很直观: 点击打开链接 原图: 现图: 、 代码: #pragma comment(

poj 2112 网络流+二分

题意: k台挤奶机,c头牛,每台挤奶机可以挤m头牛。 现在给出每只牛到挤奶机的距离矩阵,求最小化牛的最大路程。 解析: 最大值最小化,最小值最大化,用二分来做。 先求出两点之间的最短距离。 然后二分匹配牛到挤奶机的最大路程,匹配中的判断是在这个最大路程下,是否牛的数量达到c只。 如何求牛的数量呢,用网络流来做。 从源点到牛引一条容量为1的边,然后挤奶机到汇点引一条容量为m的边