CCF_201509-1_数列分段

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_201509-1_数列分段相关的知识,希望对你有一定的参考价值。

水。

 

#include<iostream>
#include<cstdio>
using namespace std;

int main()
{
    int n,a[1005];
    cin >> n;
    for(int i = 1;i <= n;i++)   cin >> a[i];
    int now = a[1],num = 1;
    for(int i = 2;i <= n;i++)
    {
        if(now != a[i])
        {
            num++;
            now = a[i];
        }
    }
    cout << num << endl;
}

 

以上是关于CCF_201509-1_数列分段的主要内容,如果未能解决你的问题,请参考以下文章

CCF 201509-1数列分段 (水题)

CCF201509-1 数列分段(100分)序列处理

CCF认证真题-(201509-1)-数列分段

ccf历年真题(截至2015年9月)

CCF认证历年试题

[CCF2015.09]题解(待填