欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

“科大讯飞杯”第18届上海大学程序设计联赛春季赛暨高校网络友谊赛 E.美味的序列

程序员文章站 2022-06-08 12:00:03
...

E.美味的序列

题目链接-E.美味的序列
“科大讯飞杯”第18届上海大学程序设计联赛春季赛暨高校网络友谊赛 E.美味的序列
“科大讯飞杯”第18届上海大学程序设计联赛春季赛暨高校网络友谊赛 E.美味的序列
解题思路

  • 不难得出吃的顺序对答案没有影响
  • 因为每经过 1秒,所有还没有被吃的部分的美味度会下降 1,所以最后减去n×(n1)/2n×(n-1)/2即可
  • ans=sumi=1n(ni)ans=sum-\sum_{i=1}^n (n-i)

附上代码

//#pragma GCC optimize("-Ofast","-funroll-all-loops")
#include<bits/stdc++.h>
#define int long long
#define lowbit(x) (x &(-x))
#define endl '\n'
using namespace std;
const int INF=0x3f3f3f3f;
const int dir[4][2]={-1,0,1,0,0,-1,0,1};
const double PI=acos(-1.0);
const double e=exp(1.0);
const double eps=1e-10;
const int M=1e9+7;
const int N=2e5+10;
typedef long long ll;
typedef pair<int,int> PII;
typedef unsigned long long ull;
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(0);cout.tie(0);

	int n,ans=0;
	cin>>n;
	for(int i=0;i<n;i++){
		int tmp;
		cin>>tmp;
		ans+=tmp; 
	}
	ans-=n*(n-1)/2;
	cout<<ans<<endl;
	return 0;
}

相关标签: 牛客nowcoder