首页 > 其他分享 >杭电2086 A=?

杭电2086 A=?

时间:2023-02-06 21:06:59浏览次数:32  
标签:1.0 int double sum 2086 cin 杭电 include


# include <iostream># include <cstdio>using namespace std;int main(){

int n,i,j;double a[2],b[50000],k;
while(cin>>n){
cin>>a[0]>>a[1];for(i=0;i<n;i++){
cin>>b[i];} double sum = 0;sum = 1.0*n/(n+1)*a[0] + 1.0/(n+1)*a[1];
k = 1.0*n*2;for(j=0;j<n;j++){
sum -= k/(n+1)*b[j];k-=2.0;}
printf("%.2lf\n",sum);}
return 0;}

标签:1.0,int,double,sum,2086,cin,杭电,include
From: https://blog.51cto.com/u_15955675/6040492

相关文章

  • 杭电2086 A=? 与整数与浮点数是否相等
    A1=?ProblemDescription有如下方程:Ai=(Ai-1+Ai+1)/2-Ci(i=1,2,3,….n).若给出A0,An+1,和C1,C2,…..Cn.请编程计算A1=?Input输入包括多个测......
  • 杭电2084
    数塔在讲述DP算法的时候,一个经典的例子就是数塔问题,它是这样描述的:有如下所示的数塔,要求从顶层走到底层,若每一步只能走到相邻的结点,则经过的结点的数字之和最大是多少?已经......
  • 杭电1171
    BigEventinHDUProblemDescriptionNowadays,weallknowthatComputerCollegeisthebiggestdepartmentinHDU.But,maybeyoudon’tknowthatComputerColl......
  • 杭电1339
    ASimpleTaskProblemDescriptionGivenapositiveintegernandtheoddintegeroandthenonnegativeintegerpsuchthatn=o2^p.ExampleForn=24,o=3and......
  • 杭电1335-任意进制的转换
    BasicallySpeaking​​http://acm.hdu.edu.cn/showproblem.php?pid=1335​​ProblemDescriptionTheReallyNeatoCalculatorCompany,Inc.hasrecentlyhiredyourt......
  • 杭电1407--暴力与优化
    测试你是否和LTC水平一样高ProblemDescription大家提到LTC都佩服的不行,不过,如果竞赛只有这一个题目,我敢保证你和他绝对在一个水平线上!你的任务是:计算方程x^2+y^2+z^2......
  • 杭电1114--完全背包
    Piggy-BankProblemDescriptionBeforeACMcandoanything,abudgetmustbepreparedandthenecessaryfinancialsupportobtained.Themainincomeforthisacti......
  • 杭电1266--数的倒叙
    ReverseNumberProblemDescriptionWelcometo2006’4computercollegeprogrammingcontest!Specially,Igivemybestregardstoallfreshmen!Youarethefuture......
  • 杭电1282-回文
    回文数猜想ProblemDescription一个正整数,如果从左向右读(称之为正序数)和从右向左读(称之为倒序数)是一样的,这样的数就叫回文数。任取一个正整数,如果不是回文数,将该数与他的......
  • 杭电2602---01背包
    骨收集器​​http://acm.hdu.edu.cn/showproblem.php?pid=2602​​问题描述许多年前,在泰迪的家乡有一个叫“拾骨者”的人。这个人喜欢收集不同的骨头,比如狗,牛,他还去了坟......