[AtCoder 2702]Fountain Walk - LIS
Problem Statement
In the city of Nevermore, there are 108 streets and 108 avenues, both numbered from0 to 108−1. All streets run straight from west to east, and all avenues run straight from south to north. The distance between neighboring streets and between neighboring avenues is exactly 100 meters.
Every street intersects every avenue. Every intersection can be described by pair(x,y), where x is avenue ID and y is street ID.
There are N fountains in the city, situated at intersections (Xi,Yi). Unlike normal intersections, there's a circle with radius 10 meters centered at the intersection, and there are no road parts inside this circle.
The picture below shows an example of how a part of the city with roads and fountains may look like.
City governors don't like encountering more than one fountain while moving along the same road. Therefore, every street contains at most one fountain on it, as well as every avenue.
Citizens can move along streets, avenues and fountain perimeters. What is the shortest distance one needs to cover in order to get from intersection (x1,y1) to intersection (x2,y2)?
Constraints
- 0≤x1,y1,x2,y2<108
- 1≤N≤200,000
- 0≤Xi,Yi<108
- Xi≠Xj for i≠j
- Yi≠Yj for i≠j
- Intersections (x1,y1) and (x2,y2) are different and don't contain fountains.
- All input values are integers.
Input
Input is given from Standard Input in the following format:
x1 y1 x2 y2
N
X1 Y1
X2 Y2
:
XN YN
Output
Print the shortest possible distance one needs to cover in order to get from intersection (x1,y1) to intersection (x2,y2), in meters. Your answer will be considered correct if its absolute or relative error doesn't exceed 10−11.
Sample Input 1
1 1 6 5
3
3 2
5 3
2 4
Sample Output 1
891.415926535897938
One possible shortest path is shown on the picture below. The path starts at the blue point, finishes at the purple point and follows along the red line.
Sample Input 2
3 5 6 4
3
3 2
5 3
2 4
Sample Output 2
400.000000000000000
Sample Input 3
4 2 2 2
3
3 2
5 3
2 4
Sample Output 3
211.415926535897938
愚人节赛的第二题(滑稽)。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define y1 Y1
using namespace std;
const int maxn=,inf=1e8;
const double qarc=acos(-)*5.0;
int n,cnt,x1,x2,y1,y2;
int f[maxn],g[maxn],b[maxn];
struct p{int x,y;}a[maxn];
inline int read(){
int x=,f=;char ch=getchar();
for(;ch<''||ch>'';f=ch=='-'?-:,ch=getchar());
for(;ch>=''&&ch<='';x=x*+ch-,ch=getchar());
return x*f;
}
bool cmp(p a,p b){return a.x<b.x;}
int main(){
x1=read();y1=read();x2=read();y2=read();n=read();
for(int i=;i<=n;i++)a[i].x=read(),a[i].y=read();
if(x1>x2){
x1=inf-x1;x2=inf-x2;
for(int i=;i<=n;i++)a[i].x=inf-a[i].x;
}
if(y1>y2){
y1=inf-y1;y2=inf-y2;
for(int i=;i<=n;i++)a[i].y=inf-a[i].y;
}
sort(a+,a+n+,cmp);
int tot=,ans1=;
for(int i=;i<=n;i++)
if(a[i].x>=x1&&a[i].x<=x2&&a[i].y>=y1&&a[i].y<=y2)
b[++tot]=a[i].y;
for(int i=;i<=tot;i++){
f[i]=lower_bound(g+,g+ans1+,b[i])-g;
if(f[i]>ans1)ans1=f[i],g[ans1]=b[i];
else g[f[i]]=min(g[f[i]],b[i]);
}
double ans=(double)(x2+y2-x1-y1)*100.0;
ans-=ans1*(-qarc);
if(ans1==min(y2-y1+,x2-x1+))ans+=qarc;
printf("%.15lf",ans);
return ;
}
[AtCoder 2702]Fountain Walk - LIS的更多相关文章
- 【agc019C】Fountain Walk
Portal --> agc019C Description 有一个\(10^8*10^8\)的网格图,一格距离为\(100\),第\(x\)条竖线和第\(y\)条横线的交点记为\((x,y)\ ...
- Agc019_C Fountain Walk
传送门 题目大意 给定网格图上起点和终点每个格子是长为$100$米的正方形,你可以沿着线走. 平面上还有若干个关键点,以每个关键点为圆心,$10$为半径画圆,表示不能进入圆内的线,但是可以从圆周上走, ...
- 【AtCoder】AGC019
A - Ice Tea Store 算一下每种零售最少的钱就行,然后优先买2,零头买1 #include <bits/stdc++.h> #define fi first #define ...
- AtCoder Beginner Contest 085(ABCD)
A - Already 2018 题目链接:https://abc085.contest.atcoder.jp/tasks/abc085_a Time limit : 2sec / Memory li ...
- AtCoder Grand Contest 031 简要题解
AtCoder Grand Contest 031 Atcoder A - Colorful Subsequence description 求\(s\)中本质不同子序列的个数模\(10^9+7\). ...
- AtCoder Beginner Contest 165
比赛链接:https://atcoder.jp/contests/abc165/tasks A - We Love Golf 题意 区间 $[a, b]$ 中是否存在 $k$ 的倍数. 代码 #inc ...
- Lis日常维护
1.[问题]护士站打印LIs条码,出来是PDF格式的 [解决]在文件夹Client\NeusoftLis\Xml\Print.xml中把BarcodePrint Name的值改成安装的斑马打印机名(不 ...
- uva10635 LIS
Prince and PrincessInput: Standard Input Output: Standard Output Time Limit: 3 Seconds In an n x n c ...
- python os.walk()
os.walk()返回三个参数:os.walk(dirpath,dirnames,filenames) for dirpath,dirnames,filenames in os.walk(): 返回d ...
随机推荐
- Eclipse 开发设置编码格式--4个修改地方完美
背景:本人用这么久,因为大部分都是设定为UTF-8 就可以了,但是一些老项目居然是GBK格式,所以 工作空间.通常文件类型的编码都是UTF-8. 针对特殊项目设定特定格式,实际中本人对整个项目设定并不 ...
- windows下Qt5.1 for android开发环境配置
1.下载安装Qt 5.1.0 for Android (Windows 32-bit, 716 MB) http://qt-project.org/downloads 2.打开Qt Creator ...
- react 常见api 使用(长期更新)
1.父子通信 1.1 父-子 props 父组件: class myPage extends React.Component { render() { return ( <div> {/* ...
- [其它]iOS 12.2支持电信VoLTE了,中国电信教你如何开通:只要三步
iOS 12.2支持电信VoLTE了,中国电信教你如何开通:只要三步 link :https://baijiahao.baidu.com/s?id=1629039609897267682&wf ...
- Xshell 连接虚拟机出现 "The remote SSH server rejected X11 forwarding request"
1. 描述 虚拟机:VirtualBox Linux: centOS7 解决了 centOS7在VirtualBox中装好后的网络连接问题 后,用 Xshell 连接服务器时出现下面情况: 2. ss ...
- 清晰讲解SQL语句中的内连接,通用于Mysql和Oracle,全是干货哦
本文章目的:力求清晰明了讲解SQL语句的内连接的各种应用,没有深奥的理解! 前奏:这篇文章和下篇文章会将内连接和外连接讲解清楚SQL语句的多表查询常用的有以下几种:两表联合查询(1)内连接(2)外连接 ...
- Django—第三方引用
索引 一.富文本编辑器 1.1 在Admin中使用 1.2 自定义使用 1.3 显示 二.全文检索 2.1 创建引擎及索引 2.2 使用 三.发送邮件 一.富文本编辑器 借助富文本编辑器,网站的编辑人 ...
- python3 字典(dictionary)(二)
内置函数: len(dict):计算字典元素个数,即键的总数 str(dict):输出字典,以可打印的字符串表示. type(variable):返回输入的变量类型,如果变量是字典就返回字典类型. ...
- querySelector() 选择器语法
选择器 示例 示例说明 CSS .class .intro 选择所有class="intro"的元素 1 #id #firstname 选择所有id="firstname ...
- thinkPHP5扩展workerman
-安装workerman 首先通过 composer 安装 composer require topthink/think-worker -vvv 如果报错: Installation failed, ...