HDU 6090 Rikka with Graph【规律】

来源:互联网 发布:d3d11游戏编程 pdf 编辑:程序博客网 时间:2024/05/22 21:30

Rikka with Graph

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 548    Accepted Submission(s): 334


Problem Description
As we know, Rikka is poor at math. Yuta is worrying about this situation, so he gives Rikka some math tasks to practice. There is one of them:

For an undirected graph G with n nodes and m edges, we can define the distance between (i,j) (dist(i,j)) as the length of the shortest path between i and j. The length of a path is equal to the number of the edges on it. Specially, if there are no path between i and j, we make dist(i,j) equal to n.

Then, we can define the weight of the graph G (wG) as ni=1nj=1dist(i,j).

Now, Yuta has n nodes, and he wants to choose no more than m pairs of nodes (i,j)(ij) and then link edges between each pair. In this way, he can get an undirected graph G with n nodes and no more than m edges.

Yuta wants to know the minimal value of wG.

It is too difficult for Rikka. Can you help her?  

In the sample, Yuta can choose (1,2),(1,4),(2,4),(2,3),(3,4).
 

Input
The first line contains a number t(1t10), the number of the testcases. 

For each testcase, the first line contains two numbers n,m(1n106,1m1012).
 

Output
For each testcase, print a single line with a single number -- the answer.
 

Sample Input
14 5
 

Sample Output
14
 

Source
2017 Multi-University Training Contest - Team 5
 


#include<iostream>#include<cstdio>#include<cstring>#include<string>#include<cmath>#include<queue>#include<stack>#include<vector>#include<map>#include<set>#include<algorithm>using namespace std;#define ll long long#define ms(a,b)  memset(a,b,sizeof(a))#define maxn 510const int M=1e6+10;const int MM=2e3+10;const int inf=0x3f3f3f3f;const int mod=998244353;const double eps=1e-10;ll n,m;int main(){    int t;    scanf("%d",&t);    while(t--){        scanf("%lld%lld",&n,&m);        ll sum=n*(n-1);        ll ans=0,sum2=0,sum1=0;        if(m<=n-1){            sum1=m*2;            sum2=(n-m-1)*((m+1)*2+(n-m-2));            ans=sum1*1+sum2*n+(sum-sum1-sum2)*2;        }        else {            m=min(m,n*(n-1)/2);            sum1=m*2;            ans=sum1*1+(sum-sum1)*2;        }        printf("%lld\n",ans);    }    return 0;}