YYH的王国(NOIP模拟赛Round 6)
Posted ghostfly233
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了YYH的王国(NOIP模拟赛Round 6)相关的知识,希望对你有一定的参考价值。
好吧,这道题还是结论题,
我们很容易就发现如果所以点都向1连边,那么答案一定最优。
所以我们只要计算2+3+4+5+...+n即可。
记住!不要智障地用for循环!
等差数列!!
#include<iostream> #include<cstdio> using namespace std; long long t,n,num; unsigned long long ans; int main(){ scanf("%d",&t); for(int i=1;i<=t;i++) { ans=0; scanf("%d",&n); ans=(1+n)*n/2-1; printf("%lld\n",ans); } }
以上是关于YYH的王国(NOIP模拟赛Round 6)的主要内容,如果未能解决你的问题,请参考以下文章