zoukankan      html  css  js  c++  java
  • zoj 1203 Swordfish

                    Swordfish
    Time Limit: 2 Seconds      Memory Limit: 65536 KB
    There exists a world within our world
    A world beneath what we call cyberspace.
    A world protected by firewalls,
    passwords and the most advanced
    security systems.
    In this world we hide
    our deepest secrets,
    our most incriminating information,
    and of course, a shole lot of money.
    This is the world of Swordfish.
    
      We all remember that in the movie Swordfish, Gabriel broke into the World Bank Investors Group in West Los Angeles, to rob $9.5 billion. And he needed Stanley, the best hacker in the world, to help him break into the password protecting the bank system. Stanley's lovely daughter Holly was seized by Gabriel, so he had to work for him. But at the last moment, Stanley made some little trick in his hacker mission: he injected a trojan horse in the bank system, so the money would jump from one account to another account every 60 seconds, and would continue jumping in the next 10 years. Only Stanley knew when and where to get the money. If Gabriel killed Stanley, he would never get a single dollar. Stanley wanted Gabriel to release all these hostages and he would help him to find the money back.
      You who has watched the movie know that Gabriel at last got the money by threatening to hang Ginger to death. Why not Gabriel go get the money himself? Because these money keep jumping, and these accounts are scattered in different cities. In order to gather up these money Gabriel would need to build money transfering tunnels to connect all these cities. Surely it will be really expensive to construct such a transfering tunnel, so Gabriel wants to find out the minimal total length of the tunnel required to connect all these cites. Now he asks you to write a computer program to find out the minimal length. Since Gabriel will get caught at the end of it anyway, so you can go ahead and write the program without feeling guilty about helping a criminal.
    
    Input:
    The input contains several test cases. Each test case begins with a line contains only one integer N (0 <= N <=100), which indicates the number of cities you have to connect. The next N lines each contains two real numbers X and Y(-10000 <= X,Y <= 10000), which are the citie's Cartesian coordinates (to make the problem simple, we can assume that we live in a flat world). The input is terminated by a case with N=0 and you must not print any output for this case.
    
    Output:
    You need to help Gabriel calculate the minimal length of tunnel needed to connect all these cites. You can saftly assume that such a tunnel can be built directly from one city to another. For each of the input cases, the output shall consist of two lines: the first line contains "Case #n:", where n is the case number (starting from 1); and the next line contains "The minimal distance is: d", where d is the minimal distance, rounded to 2 decimal places. Output a blank line between two test cases.
    
    Sample Input:
    
    5
    0 0
    0 1
    1 1
    1 0
    0.5 0.5
    0
    
    
    Sample Output:
    
    Case #1:
    The minimal distance is: 2.83

    //模板题

    #include <iostream> #include <stdio.h> #include <queue> #include <math.h> #include <string.h> using namespace std; #define N 102 double dis(double x,double y,double a,double b) { return sqrt((x-a)*(x-a)+(y-b)*(y-b)); } double map[N][N]; bool b[N]; int n; double Max; double Prim() { double sum=0; memset(b,0,sizeof(b)); int i,t=n-1; int k; double Min; b[0]=1; while(t--) { Min=Max; for(i=1;i<n;i++) if(!b[i]&&map[0][i]<=Min) { Min=map[0][i]; k=i; } //printf("%d",k); sum+=Min; b[k]=1; for(i=1;i<n;i++) if(!b[i]&&map[0][i]>map[k][i]) map[0][i]=map[k][i]; } return sum; } int main() { double rc[N][2]; int i,j,k; int t=0; while(scanf("%d",&n),n) { for(i=0;i<n;i++) scanf("%lf %lf",&rc[i][0],&rc[i][1]); Max=0; for(i=0;i<n;i++) for(j=i+1;j<n;j++) { map[i][j]=dis(rc[i][0],rc[i][1],rc[j][0],rc[j][1]); map[j][i]=map[i][j]; Max=Max>map[i][j]?Max:map[i][j]; } if(t) printf("\n"); printf("Case #%d:\n",++t); printf("The minimal distance is: %.2lf\n",Prim()); } return 0; }
     
  • 相关阅读:
    判断是否是三角形,三角形面积,三角形内外切圆半径和面积
    输入从a加到b的两个数字
    九九乘法表
    某公司销售员工的年终奖根据该员工的年销售总额s提成,年销售总额超过1万元才提成,超过部分提成比例如下:
    判断是否是闰年?
    从键盘上输入三个点的坐标值(1,1)、(2,4)、(3,2),编程求该三角形的面积。
    输入一个正方形的边长,输出正方形的外接圆和内接圆的面积。
    .输入一个4位正整数,以相反的次序输出,例如,输入1234,输出为4321。
    SecoClient在win10系统中连接失败解决方案
    PHP 关于判断输入日期是否合法
  • 原文地址:https://www.cnblogs.com/372465774y/p/2766410.html
Copyright © 2011-2022 走看看