首页 > 代码库 > XDOJ_1082_图的最大边数

XDOJ_1082_图的最大边数

http://acm.xidian.edu.cn/problem.php?id=1082

 

不能有环。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

int n;

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        long long maxx = 0,sum = 0,temp;
        scanf("%d",&n);
        while(n--)
        {
            scanf("%lld",&temp);
            maxx = max(maxx,temp);
            sum += temp;
        }
        printf("%lld\n",min(sum/2,sum-maxx));
    } 
    return 0;
}

 

XDOJ_1082_图的最大边数