CF-30 D - King's Problem?(枚举+最短路)

本文详细阐述了如何利用贪心算法解决Codeforces世界决赛中King需要完成一系列任务并最终遍历整个王国的问题。通过枚举特定点E,并计算从起点到终点的最短路径,实现全局最小距离的路径规划。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

D - King's Problem?
Crawling in process... Crawling failed Time Limit:3000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u

Description

Every true king during his life must conquer the world, hold the Codeforces world finals, win pink panda in the shooting gallery and travel all over his kingdom.

King Copa has already done the first three things. Now he just needs to travel all over the kingdom. The kingdom is an infinite plane with Cartesian coordinate system on it. Every city is a point on this plane. There are n cities in the kingdom at points with coordinates (x1, 0), (x2, 0), ..., (xn, 0), and there is one city at point (xn + 1, yn + 1).

King starts his journey in the city number k. Your task is to find such route for the king, which visits all cities (in any order) and has minimum possible length. It is allowed to visit a city twice. The king can end his journey in any city. Between any pair of cities there is a direct road with length equal to the distance between the corresponding points. No two cities may be located at the same point.

Input

The first line contains two integers n and k (1 ≤ n ≤ 105, 1 ≤ k ≤ n + 1) — amount of cities and index of the starting city. The second line contains n + 1 numbers xi. The third line contains yn + 1. All coordinates are integers and do not exceed 106 by absolute value. No two cities coincide.

Output

Output the minimum possible length of the journey. Your answer must have relative or absolute error less than 10 - 6.

Sample Input

Input
3 1
0 1 2 1
1
Output
3.41421356237309490000
Input
3 1
1 0 2 1
1
Output
3.82842712474619030000
Input
4 5
0 5 -1 -5 2
3
Output
14.24264068711928400000

思路:如图,假设将所有点排序后,A为最左点,C为最右点,B为起始点,D为最后的n+1点,E为A到C中的任意一点。

      枚举所有的E点(AE+ED+DE+EC+BC)or(BA+AE+ED+DE+EC)最短路的最优解必在其中。

#include<iostream>
#include<cstring>
#include<iomanip>
#include<algorithm>
#include<cmath>
using namespace std;
const int mm=110000;
double x,y,xx[mm];
int n,m,xxm;
double C(int z)
{
  return hypot(x-xx[z],y);
}
double A(int l,int r)
{
  double z=xx[r]-xx[l]+min(C(l),C(r));
  return z;
}
double B(int l,int r)
{
  double z;
  z=xx[r]-xx[l]+min(C(l)+abs(xxm-xx[r]),C(r)+abs(xxm-xx[l]));
  return z;
}
int main()
{
  while(cin>>n>>m)
  {
    for(int i=0;i<n;i++)
      cin>>xx[i];
    cin>>x>>y;
    xxm=xx[m-1];
    sort(xx,xx+n);
    double ans;
    if(m==n+1)ans=A(0,n-1);
    else 
    {ans=B(0,n-1);
     for(int i=1;i<n;i++)
     {
      double z;z=min(A(0,i-1)+B(i,n-1),A(i,n-1)+B(0,i-1));
      ans=ans<z?ans:z;
      ///cout<<"z="<<z<<endl;
     }
    }
    cout.setf(ios::fixed);
    cout<<setprecision(8)<<ans<<"\n";
  }
}



转载于:https://www.cnblogs.com/nealgavin/archive/2013/02/13/3206150.html

资源下载链接为: https://pan.quark.cn/s/f989b9092fc5 HttpServletRequestWrapper 是 Java Servlet API 中的一个工具类,位于 javax.servlet.http 包中,用于对 HttpServletRequest 对象进行封装,从而在 Web 应用中实现对 HTTP 请求的拦截、修改或增强等功能。通过继承该类并覆盖相关方法,开发者可以轻松地自定义请求处理逻辑,例如修改请求参数、添加请求头、记录日志等。 参数过滤:在请求到达处理器之前,可以对请求参数进行检查或修改,例如去除 URL 编码、过滤敏感信息或进行安全检查。 请求头操作:可以修改或添加请求头,比如设置自定义的 Content-Type 或添加认证信息。 请求属性扩展:在原始请求的基础上添加自定义属性,供后续处理使用。 日志记录:在处理请求前记录请求信息,如 URL、参数、请求头等,便于调试和监控。 跨域支持:通过添加 CORS 相关的响应头,允许来自不同源的请求。 HttpServletRequestWrapper 通过继承 HttpServletRequest 接口并重写其方法来实现功能。开发者可以在重写的方法中添加自定义逻辑,例如在获取参数时进行过滤,或在读取请求体时进行解密。当调用这些方法时,实际上是调用了包装器中的方法,从而实现了对原始请求的修改或增强。 以下是一个简单的示例,展示如何创建一个用于过滤请求参数的包装器: 在 doFilter 方法中,可以使用 CustomRequestWrapper 包装原始请求: 这样,每当调用 getParameterValues 方法时,都会先经过自定义的过滤逻辑。 HttpServletRequestWrapper 是 Java Web 开发中一个强大的工具,它提供了灵活的扩展性,允许开发者
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值