首页 > 代码库 > hdu4011(水贪心)
hdu4011(水贪心)
点击打开链接hdu4011
水贪心:
注意I64d!
#include <stdio.h> #include <string.h> #include <iostream> #include <math.h> #include <algorithm> #include <vector> #include <map> #include <queue> #include <stack> #define PI acos(-1.0) #define eps 1e-8 #define LL long long #define moo 1000000007 #define INF -999999999 using namespace std; #define maxn 101000 int main() { int t; cin>>t; int n,b; long long sum,ans,a; int s[maxn]; int Case=1; while(t--) { scanf("%d%I64d%d",&n,&a,&b); sum=b+a*2; ans=a*2+b; for(int i=1;i<=n;i++) scanf("%d",s+i); for(int i=1;i<n;i++) s[i]=s[i+1]-s[i]; for(int i=1;i<n;i++) { if(s[i]*b>=ans) sum+=ans; else sum+=s[i]*b; } printf("Case #%d: %I64d\n",Case++,sum); } return 0; }
hdu4011(水贪心)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。