• FZU 1096 QS Network


    QS Network

    Time Limit: 1000ms
    Memory Limit: 32768KB
    This problem will be judged on FZU. Original ID: 1096
    64-bit integer IO format: %I64d      Java class name: Main
     

    In the planet w-503 of galaxy cgb, there is a kind of intelligent creature named QS. QScommunicate with each other via networks. If two QS want to get connected, they need to buy two network adapters (one for each QS) and a segment of network cable. Please be advised that ONE NETWORK ADAPTER CAN ONLY BE USED IN A SINGLE CONNECTION.(ie. if a QS want to setup four connections, it needs to buy four adapters). In the procedure of communication, a QS broadcasts its message to all the QS it is connected with, the group of QS who receive the message broadcast the message to all the QS they connected with, the procedure repeats until all the QS's have received the message.

    A sample is shown below:


    A sample QS network, and QS A want to send a message.

    Step 1. QS A sends message to QS B and QS C;

    Step 2. QS B sends message to QS A ; QS C sends message to QS A and QS D;

    Step 3. the procedure terminates because all the QS received the message.

    Each QS has its favorate brand of network adapters and always buys the brand in all of its connections. Also the distance between QS vary. Given the price of each QS's favorate brand of network adapters and the price of cable between each pair of QS, your task is to write a program to determine the minimum cost to setup a QS network.

    Input

    The 1st line of the input contains an integer t which indicates the number of data sets.

    From the second line there are t data sets.

    In a single data set,the 1st line contains an interger n which indicates the number of QS.
    The 2nd line contains n integers, indicating the price of each QS's favorate network adapter.
    In the 3rd line to the n+2th line contain a matrix indicating the price of cable between ecah pair of QS.

    Constrains:

    All the integers in the input are non-negative and not more than 1000.

    Output

    for each data set,output the minimum cost in a line. NO extra empty lines needed.

    Sample Input

    1
    3
    10 20 30
    0 100 200
    100 0 300
    200 300 0
    

    Sample Output

    370

    解题:需要注意:每个网络适配器只能用于单一的通信中

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <queue>
     4 #include <cstring>
     5 #define INF 0x3f3f3f3f
     6 #define pii pair<int,int>
     7 using namespace std;
     8 const int maxn = 1010;
     9 struct arc{
    10     int to,w,next;
    11     arc(int x = 0,int y = 0,int z = -1){
    12         to = x;
    13         w = y;
    14         next = z;
    15     }
    16 }e[maxn*maxn];
    17 int head[maxn],d[maxn],adapter[maxn],tot,n;
    18 bool done[maxn];
    19 priority_queue< pii,vector< pii >,greater< pii > >q;
    20 void add(int u,int v,int w){
    21     e[tot] = arc(v,w,head[u]);
    22     head[u] = tot++;
    23 }
    24 int prim(){
    25     int ans = 0;
    26     for(int i = 0; i < maxn; ++i){
    27         d[i] = INF;
    28         done[i] = false;
    29     }
    30     while(!q.empty()) q.pop();
    31     q.push(make_pair(d[0] = 0,0));
    32     while(!q.empty()){
    33         int u = q.top().second;
    34         q.pop();
    35         if(done[u]) continue;
    36         done[u] = true;
    37         ans += d[u];
    38         for(int i = head[u]; ~i; i = e[i].next){
    39             if(d[e[i].to] > e[i].w) q.push(make_pair(d[e[i].to] = e[i].w,e[i].to));
    40         }
    41     }
    42     return ans;
    43 }
    44 int main(){
    45     int kase;
    46     scanf("%d",&kase);
    47     while(kase--){
    48         memset(head,-1,sizeof(head));
    49         int ans = tot = 0,tmp;
    50         scanf("%d",&n);
    51         for(int i = 0; i < n; ++i)
    52             scanf("%d",adapter+i);
    53         for(int i = 0; i < n; ++i){
    54             for(int j = 0; j < n; ++j){
    55                 scanf("%d",&tmp);
    56                 if(i != j) add(i,j,tmp+adapter[i]+adapter[j]);
    57             }
    58         }
    59         printf("%d
    ",prim());
    60     }
    61     return 0;
    62 }
    View Code
  • 相关阅读:
    asp.net导出数据到execl并保存到本地 不需要调用Office组件
    动态创建DataTable,GridView创建多表头,表头跨行或跨列合并,创建计算列及列内容自适应等
    Oracle内置SQL函数收集整理大全
    无比强大的GridView,表头固定,表体有滚动条可滚动
    很不错的asp.net文件上传类c# 搜索文件 移动文件 删除文件等
    【备用】非常不错的ASP操作数据库类,支持多数据库MSSQL,ACCESS,ORACLE,MYSQL等
    Asp.Net读取Execl常见问题收集
    经常用到的交叉表问题,一般用动态SQL能生成动态列
    C# asp.net中常见的字符串处理函数及数字格式化
    比较两个DataTable中不同的记录,且合并两个DataTable的列显示,有图
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4333876.html
Copyright © 2020-2023  润新知