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_数列分段的主要内容,如果未能解决你的问题,请参考以下文章