zoukankan      html  css  js  c++  java
  • hduoj 4706 Herding 2013 ACM/ICPC Asia Regional Online —— Warmup

    hduoj 4706 Children's Day 2013 ACM/ICPC Asia Regional Online —— Warmup

    Herding

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2005    Accepted Submission(s): 563

    Problem Description
    Little John is herding his father's cattles. As a lazy boy, he cannot tolerate chasing the cattles all the time to avoid unnecessary omission. Luckily, he notice that there were N trees in the meadow numbered from 1 to N, and calculated their cartesian coordinates (Xi, Yi). To herding his cattles safely, the easiest way is to connect some of the trees (with different numbers, of course) with fences, and the close region they formed would be herding area. Little John wants the area of this region to be as small as possible, and it could not be zero, of course.
     
    Input
    The first line contains the number of test cases T( T<=25 ). Following lines are the scenarios of each test case. The first line of each test case contains one integer N( 1<=N<=100 ). The following N lines describe the coordinates of the trees. Each of these lines will contain two float numbers Xi and Yi( -1000<=Xi, Yi<=1000 ) representing the coordinates of the corresponding tree. The coordinates of the trees will not coincide with each other.
     
    Output
    For each test case, please output one number rounded to 2 digits after the decimal point representing the area of the smallest region. Or output "Impossible"(without quotations), if it do not exists such a region.
     
    Sample Input
    1 4 -1.00 0.00 0.00 -3.00 2.00 0.00 2.00 2.00
     
    Sample Output
    2.00
     
    Source
     
     

    分析:

    题意是在N棵树中选出M棵围成的区域面积最小。

    换句话说就是求在一堆笛卡尔坐标中选出三个点组成的面积最小。

    AC代码:

     1 #include<cstdio>
     2 #include<algorithm>
     3 #include<cstring>
     4 #include<queue>
     5 #include<iostream>
     6 #include<stack>
     7 #include<map>
     8 #include<cmath>
     9 #include<string>
    10 using namespace std;
    11 #define N 1000000
    12 struct Point{
    13     double x;
    14     double y;
    15 }point[110];
    16 double area2(double x0, double y0 , double x1, double y1, double x2, double y2)
    17 {
    18     return fabs(x0*y1+x2*y0+x1*y2-x2*y1-x0*y2-x1*y0);
    19 }
    20 int main(){
    21     int n;
    22     int tcase;
    23     scanf("%d", &tcase);
    24     while(tcase--){
    25         double minn = 10000005;
    26         bool flag = false;
    27         scanf("%d", &n);
    28         for(int i = 0; i < n; i++){
    29             scanf("%lf%lf", &point[i].x, &point[i].y);
    30         }
    31         if(n >= 3){
    32             for(int i = 0; i < n-2; i++){
    33                 for(int j = i+1; j < n-1; j++){
    34                     for(int k = j+1; k < n; k++){
    35                         double x1, x2, x3, y1, y2, y3;
    36                         x1 = point[i].x; y1 = point[i].y;
    37                         x2 = point[j].x; y2 = point[j].y;
    38                         x3 = point[k].x; y3 = point[k].y;
    39                         double num = area2(x1, y1, x2, y2, x3, y3);
    40                         num /= 2.0;
    41                         if(num < minn && num != 0){
    42                             minn = num;
    43                             flag = true;
    44                         }
    45                     }
    46                 }
    47             }
    48         }
    49         if(flag)
    50             printf("%.2lf
    ", minn);
    51         else
    52             printf("Impossible
    ");
    53     }
    54     return 0;
    55 }
    View Code
  • 相关阅读:
    [转]以安装桌面体验功能为例来探索windows2012服务器管理器的新变化
    [转]DPM2012系列之十六:在SCOM2012上集成DPM2012中央控制台
    [转]DPM2012系列之十二:还原exchange2010用户邮件
    Windows Phone Dev Center How to deploy and run a Windows Phone app
    [转].NET StockTrader 6 Sample Application
    [转]DPM2012系列之一:安装Data Protection Manager 2012
    [转]DPM2012系列之二十:保护Windows server 2012
    [转]DPM2012系列之十七:如何将备份文件恢复到网络共享文件夹
    [转]DPM2012系列之十四:备份SQL server 2008R2数据库
    [转]使用SCOM 2012监控网络
  • 原文地址:https://www.cnblogs.com/jeff-wgc/p/4466972.html
Copyright © 2011-2022 走看看