CodeForces - 534B-Covered Path+??????

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces - 534B-Covered Path+??????相关的知识,希望对你有一定的参考价值。

???????????????   include   lan   .net   col   time   using   tar   log   

CodeForces - 534B 

??????????????????????????????????????????????????????????????????????????????????????????????????????

??????????????????????????????????????????????????????

#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cstdio>
using namespace std;

int main(){
    int v1,v2,time,d;
    cin>>v1>>v2>>time>>d;
    int ans=0;
    for(int i=1;i<=time;i++)
    {
        ans += v1;
     //   printf("$%d\n",v1);
        v1 = min(v1+d,v2+(time-i-1)*d);//??????????????????????????????
    }
    cout<<ans<<endl;
    return 0;
}

 

以上是关于CodeForces - 534B-Covered Path+??????的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #534 (Div. 2)题解

Codeforces Round #534 (Div. 2)

[ACM]Codeforces Round #534 (Div. 2)

Codeforces Round #534 (Div. 2) Solution

Codeforces-534D Handshakes

Codeforces Round #534 (Div. 1)