• Hardly Hard


    You have been given the task of cutting out a quadrilateral slice of cake out of a larger, rectangular cake. You must find the slice with the smallest perimeter that satisfies the following constraints. If the cake is of size 10000-by-10000 units and is represented using the first quadrant of the Cartesian plane, then your slice is quadrilateral ABCD (see figure). Points A and B are fixed and will be given to you. Also, A,B will lie on a negatively sloping line. Furthermore, points C and D must lie on the positive y-axis and positive x-axis respectively, but it is up to you to determine where these two points should be. A,B,C,D will be distinct points.

    Output the minimum perimeter of your slice of cake.

    Input

    On the first line you will be given n (1 ≤ n ≤ 100), the number of test cases. The following n lines each contain ax ay bx by (0 < ax, ay, bx, by ≤ 10000.0), the coordinates of points A and B respectively.

    Output

    For each test case, output the perimeter accurate to 3 decimal places on its own line.

    Sample Input

    1
    3.0 1.0 1.0 2.0
    

    Output for the Sample Input

    7.236


    解析:当周长最短时,BC、AD都与AB垂直。

    代码如下:
    # include<iostream>
    # include<cstdio>
    # include<cstring>
    # include<cmath>
    # include<algorithm>
    using namespace std;
    double dis(double x1,double y1,double x2,double y2)
    {
        return sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
    }
    int main()
    {
        //freopen("T - Hardly Hard.txt","r",stdin);
        int T;
        double x0,y0,x1,y1,x2,y2;
        scanf("%d",&T);
        while(T--)
        {
            cin>>x1>>y1>>x2>>y2;
            printf("%.3lf ",dis(x1,y1,x2,y2)+dis(x1,y1,-x2,-y2));
        }
        return 0;
    }

  • 相关阅读:
    emWin模拟器Visual Studio开发时无法printf打印的问题
    双边滤波算法
    hough变换算法
    OpenCV3入门(十四)图像特效—挤压、哈哈镜、扭曲
    Canny检测算法与实现
    图像频域滤波与傅里叶变换
    OpenCV3入门(十二)角点检测
    OpenCV3入门(十一)图像直方图
    OpenCV3入门(十)图像轮廓
    一款基于SVM算法的分布式法律助手
  • 原文地址:https://www.cnblogs.com/20143605--pcx/p/4667070.html
Copyright © 2020-2023  润新知