zoukankan      html  css  js  c++  java
  • 长春网络赛 1102

    Ponds

    Time Limit: 1500/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
    Total Submission(s): 3851    Accepted Submission(s): 582


    Problem Description
    Betty owns a lot of ponds, some of them are connected with other ponds by pipes, and there will not be more than one pipe between two ponds. Each pond has a value v.

    Now Betty wants to remove some ponds because she does not have enough money. But each time when she removes a pond, she can only remove the ponds which are connected with less than two ponds, or the pond will explode.

    Note that Betty should keep removing ponds until no more ponds can be removed. After that, please help her calculate the sum of the value for each connected component consisting of a odd number of ponds
     
    Input
    The first line of input will contain a number T(1T30) which is the number of test cases.

    For each test case, the first line contains two number separated by a blank. One is the number p(1p104) which represents the number of ponds she owns, and the other is the number m(1m105) which represents the number of pipes.

    The next line contains p numbers v1,...,vp, where vi(1vi108) indicating the value of pond i.

    Each of the last m lines contain two numbers a and b, which indicates that pond a and pond b are connected by a pipe.
     
    Output
    For each test case, output the sum of the value of all connected components consisting of odd number of ponds after removing all the ponds connected with less than two pipes.
     
    Sample Input
    1 7 7 1 2 3 4 5 6 7 1 4 1 5 4 5 2 3 2 6 3 6 2 7
     
    Sample Output
    21
     1 #include <stdio.h>
     2 #include <string.h>
     3 #include <vector>
     4 #include <algorithm>
     5 using namespace std;
     6 
     7 int vul[10005],l[10005],s;
     8 vector <int> e[10005];
     9 long long sum;
    10 
    11 void check(int x)
    12 {
    13     int i,j,num=0;
    14     for(i=0;i<e[x].size();i++)
    15     {
    16         int v=e[x][i];
    17         if(l[v]==1)
    18             num++;
    19     }
    20     if(e[x].size()-num<2)
    21     {
    22         l[x]=1;
    23         for(i=0;i<e[x].size();i++)
    24         {
    25             int v=e[x][i];
    26             if(l[v]==0)
    27             {
    28                 check(v);
    29             }
    30         }
    31     }
    32     return ;
    33 }
    34 
    35 int add(int x)
    36 {
    37     int i,j;
    38     l[x]=1;s++;sum=sum+vul[x];
    39     for(i=0;i<e[x].size();i++)
    40     {
    41         int v=e[x][i];
    42         if(l[v]==0)
    43             add(v);
    44     }
    45     return 0;
    46 }
    47 int main()
    48 {
    49     int T;
    50     int n,m;
    51     int i,j;
    52     scanf("%d",&T);
    53     while(T--)
    54     {
    55         long long ans=0;
    56         scanf("%d %d",&n,&m);
    57         memset(l,0,sizeof(l));
    58         for(i=1;i<=n;i++)
    59             scanf("%d",&vul[i]);
    60         for(i=1;i<=n;i++)
    61         {
    62             e[i].clear();
    63         }
    64         for(i=1;i<=m;i++)
    65         {
    66             int u,v;
    67             scanf("%d %d",&u,&v);
    68             e[u].push_back(v);
    69             e[v].push_back(u);
    70         }
    71         for(i=1;i<=n;i++)
    72         {
    73             if(l[i]==0)
    74             {
    75                 check(i);
    76             }
    77         }
    78 
    79         for(i=1;i<=n;i++)
    80         {
    81             if(l[i]==0)
    82             {
    83                 s=0,sum=0;
    84                 add(i);
    85                 if(s%2==1)
    86                     ans=ans+sum;
    87             }
    88         }
    89         printf("%I64d
    ",ans);
    90     }
    91     return 0;
    92 }
    View Code
  • 相关阅读:
    【Python入门 】—— 关于Numpy的使用
    CSP 201512 | 201604考试题目
    【Python入门】 —— 用pycharm写7道简单的PTA题目吧!
    【Python入门】 —— 用pycharm写两道超简单的PTA题目~
    Crypto.AES 报错 | TypeError: Object type <class 'str'> cannot be passed to C code
    windows安装Pytorch报错:from torch._C import * ImportError: DLL load failed: 找不到指定的模块”解决方案
    Python中的self通俗理解(自己理解的,自我感觉比官网解释要容易懂)
    python获取token数据
    python根据对象的实例获取对象的属性值
    oracle查询某个字段不为空的sql语句
  • 原文地址:https://www.cnblogs.com/cyd308/p/4820255.html
Copyright © 2011-2022 走看看