codeforces 712A. Memory and Crow

Posted shuoed

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 712A. Memory and Crow相关的知识,希望对你有一定的参考价值。

题目链接:http://codeforces.com/problemset/problem/712/A

题目大意:

  给你一个数字系列,求其满足条件的一个序列。

  条件为:

    ai = bi - bi + 1 + bi + 2 - bi + 3....

解题思路:

    可先从后向前推,b[n]=a[n](1-n个数);

    b[i]=a[i]+b[i+1]-b[i+1]...

    然而,你可以发现b[i]=a[i]+a[i+1],一个a数组即可解决问题。

AC Code:

【切记暴力不好使,还是泪奔0.0,最近感觉智商被掏空】

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int a[100002];
 4 int main()
 5 {
 6     int n,i;
 7     while(scanf("%d",&n)!=EOF)
 8     {
 9         for(i=1; i<=n; i++)
10             scanf("%d",&a[i]);
11         for(i=1; i<n; i++)
12         {
13             printf("%d ",a[i]+a[i+1]);
14         }
15         printf("%d\n",a[i]);
16     }
17     return 0;
18 }

 

以上是关于codeforces 712A. Memory and Crow的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 712C. Memory and De-Evolution

Codeforces 712A Memory and Crow

[CodeForces - 712D]Memory and Scores (DP 或者 生成函数)

Codeforces 712 D. Memory and Scores (DP+滚动数组+前缀和优化)

Codeforces 712B Memory and Trident

Memory and Trident(CodeForces 712B)