zoukankan      html  css  js  c++  java
  • POJ-1502-MPI Maelstrom

    问题描述

    BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distributed shared memory machine with a hierarchical communication subsystem. Valentine McKee's research advisor, Jack Swigert, has asked her to benchmark the new system.
    ``Since the Apollo is a distributed shared memory machine, memory access and communication times are not uniform,'' Valentine told Swigert. ``Communication is fast between processors that share the same memory subsystem, but it is slower between processors that are not on the same subsystem. Communication between the Apollo and machines in our lab is slower yet.''

    ``How is Apollo's port of the Message Passing Interface (MPI) working out?'' Swigert asked.

    ``Not so well,'' Valentine replied. ``To do a broadcast of a message from one processor to all the other n-1 processors, they just do a sequence of n-1 sends. That really serializes things and kills the performance.''

    ``Is there anything you can do to fix that?''

    ``Yes,'' smiled Valentine. ``There is. Once the first processor has sent the message to another, those two can then send messages to two other hosts at the same time. Then there will be four hosts that can send, and so on.''

    ``Ah, so you can do the broadcast as a binary tree!''

    ``Not really a binary tree -- there are some particular features of our network that we should exploit. The interface cards we have allow each processor to simultaneously send messages to any number of the other processors connected to it. However, the messages don't necessarily arrive at the destinations at the same time -- there is a communication cost involved. In general, we need to take into account the communication costs for each link in our network topologies and plan accordingly to minimize the total time required to do a broadcast.''

    输入

    The input will describe the topology of a network connecting n processors. The first line of the input will be n, the number of processors, such that 1 <= n <= 100.

    The rest of the input defines an adjacency matrix, A. The adjacency matrix is square and of size n x n. Each of its entries will be either an integer or the character x. The value of A(i,j) indicates the expense of sending a message directly from node i to node j. A value of x for A(i,j) indicates that a message cannot be sent directly from node i to node j.

    Note that for a node to send a message to itself does not require network communication, so A(i,i) = 0 for 1 <= i <= n. Also, you may assume that the network is undirected (messages can go in either direction with equal overhead), so that A(i,j) = A(j,i). Thus only the entries on the (strictly) lower triangular portion of A will be supplied.

    The input to your program will be the lower triangular section of A. That is, the second line of input will contain one entry, A(2,1). The next line will contain two entries, A(3,1) and A(3,2), and so on.

    输出

    Your program should output the minimum communication time required to broadcast a message from the first processor to all the other processors.

    样例输入

    5
    50
    30 5
    100 20 50
    10 x x 10

    样例输出

    35

    起点为1,求它连通全图,最少要用的时间!
    atoi()函数

    原型:int  atoi (const  char  *nptr)

        用法:#include  <stdlib.h>

        功能:返回转换后的整型数。

     

     1 #include <stdio.h>
     2 #include <stdlib.h>
     3 #include <string.h>
     4 #include <algorithm>
     5 using namespace std;
     6 const int inf=1<<29;
     7 const int N=110;
     8 int u,v,n,b;
     9 char c[N];
    10 int w[N][N],d[N],vis[N];
    11 void dij()
    12 {
    13     for(int i=1;i<=n;i++)
    14     {
    15         d[i]=inf;
    16     }
    17     d[1]=0;
    18     for(int i=1;i<=n;i++)
    19     {
    20         int now=inf;
    21         int x;
    22         for(int j=1;j<=n;j++)
    23         {
    24             if(!vis[j]&&now>d[j])
    25             {
    26                 now=d[j];
    27                 x=j;
    28             }
    29         }
    30         vis[x]=1;
    31         for(int j=1;j<=n;j++)
    32         {
    33             if(!vis[j]&&d[j]>d[x]+w[x][j])
    34             {
    35                 d[j]=d[x]+w[x][j];
    36             }
    37         }
    38     }
    39 }
    40 int main()
    41 {
    42     while(scanf("%d",&n)!=EOF)
    43     {
    44         memset(vis,0,sizeof(vis));
    45         for(int i=1; i<=n; i++)
    46         {
    47             for(int j=1; j<=n; j++)
    48             {
    49                 w[i][j]=inf;
    50             }
    51         }
    52         for(int i=2; i<=n; i++)
    53         {
    54             for(int j=1; j<i; j++)
    55             {
    56                 scanf("%s",c);//输入全部为字符串型
    57                 if(strcmp(c,"x")!=0)//比较字符串相等
    58                 {
    59                     b=atoi(c);//把字符串转成整型数
    60                     if(b<w[i][j])
    61                     {
    62                         w[i][j]=b;
    63                         w[j][i]=b;
    64                     }
    65                 }
    66             }
    67         }
    68         dij();
    69         int mi=-inf;
    70         for(int i=2;i<=n;i++)//由起点同时出发,离它最远的那个点的最小权值就是它至少要用的时间
    71         {
    72             if(d[i]>mi)
    73                 mi=d[i];
    74         }
    75         printf("%d
    ",mi);
    76     }
    77     return 0;
    78 }

     

     

  • 相关阅读:
    linux内核系统调用和标准C库函数的关系分析
    Linux下内存映射文件的用法简介
    Hi35xx 通用GPIO 使用篇(板子3G电源控制脚说明)
    关于Linux用户名
    关于ARGB_8888、ALPHA_8、ARGB_4444、RGB_565的理解
    PixelFormat 图像颜色的数据格式
    Ubuntu 搭建svn服务器 ,以及常见错误解决方案
    安装VisualSVN Server 报错The specified TCP port is occupied
    SVN服务器搭建和使用(三)
    SVN服务器搭建和使用(二)
  • 原文地址:https://www.cnblogs.com/tianmin123/p/4791647.html
Copyright © 2011-2022 走看看