CF732B 1000*
Posted blackatao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF732B 1000*相关的知识,希望对你有一定的参考价值。
题意
解析
当a[i] + a[i-1] < k 时,加a[i]影响后面
代码
#include <bits/stdc++.h>
using namespace std;
const int N = 510;
int n,k,a[N],res;
int main()
cin >> n >> k;
for(int i=1;i<=n;i++)
cin >> a[i];
for(int i=2;i<=n;i++)
if(a[i-1] + a[i] < k)
res += k - a[i-1] - a[i];
a[i] += k - a[i-1] - a[i];
cout << res << endl;
cout << a[1];
for(int i=2;i<=n;i++)
cout << " " << a[i];
return 0;
以上是关于CF732B 1000*的主要内容,如果未能解决你的问题,请参考以下文章