zoukankan      html  css  js  c++  java
  • Triangle

    Problem Description
    This is a simple question, give you a triangle, please divide the triangle into two parts with a segment. These two parts should have the same area, and the segment should be as short as possible. Please calculate the length of the segment.
     

    Input
    The first line of the input is the number T(T<=100), which is the number of cases followed. For each test case, the only line contains space-separated integers x1, y1, x2, y2, x3, y3,the coordinates of triangle endpoint. The absolute value of all the coordinates will not be more than 109.
     

    Output
    For each test case, output only one line, containing the length of segment only. Your answer should be rounded to 4 digits after the decimal point.
     

    Sample Input
    1 0 0 10 0 0 10
     

    Sample Output
    6.4359

    因为要分割为两个面积相等的两部分,而且要使分割线最小,所以选择最小顶点多对应的分割线,这样分割线会最短。而且分割后得到的三角形是等腰三角形。
    先找出最小边,然后把其对应的角的cos值算出来,然后再算出等腰三角形的腰,最后算出分割线的长。
    #include<stdio.h>
    #include<math.h>
    double f1,f2,a1,a2,a3,b1,b2,b3;
    int cas;
    int main(){
        scanf("%d",&cas);
        int casno=0;
        while(cas--){
            scanf("%lf%lf%lf%lf%lf%lf",&a1,&b1,&a2,&b2,&a3,&b3);
            double a=sqrt((a1-a2)*(a1-a2)+(b1-b2)*(b1-b2));
            double b=sqrt((a1-a3)*(a1-a3)+(b1-b3)*(b1-b3));
            double c=sqrt((a3-a2)*(a3-a2)+(b3-b2)*(b3-b2));
            double th;
            if(a<=b&&a<=c){
                th=acos(-(a*a-b*b-c*c)/2/b/c);
                f1=b,f2=c;
            }else if(b<=a&&b<=c){
                th=acos(-(b*b-a*a-c*c)/2/a/c);
                f1=a,f2=c;
            }else {
                th=acos(-(c*c-a*a-b*b)/2/a/b);
                f1=a,f2=b;
            }
            //printf("%.4f %.4f %.4f
    ",a,b,c);
            //printf("%.4f %.4f %.4f
    ",th,f1,f2);        
            double x=sqrt(f1*f2/2);        
            printf("%.4f
    ",2*sin(th/2)*x);
        }
    }

  • 相关阅读:
    【MVC 4】7.SportsSore:完成购物车
    【MVC 4】6.SportsSore:导航
    【MVC 4】5.SportsSore —— 一个真实的应用程序
    【网络文摘】面试感悟:3年工作经验程序员应有的技能
    【网络文摘】一个大神程序员的使命感究竟应该是什么
    join的简单总结
    模块化(1):基本思路
    Android 9.0新特性
    DataBinding初认识
    Android 7.0 新特性
  • 原文地址:https://www.cnblogs.com/herumw/p/9464864.html
Copyright © 2011-2022 走看看