B - Magnets

Problem description

Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets are put together at a close distance, then the like poles will repel each other and the opposite poles will attract each other.

Mike starts by laying one magnet horizontally on the table. During each following step Mike adds one more magnet horizontally to the right end of the row. Depending on how Mike puts the magnet on the table, it is either attracted to the previous one (forming a group of multiple magnets linked together) or repelled by it (then Mike lays this magnet at some distance to the right from the previous one). We assume that a sole magnet not linked to others forms a group of its own.

Mike arranged multiple magnets in a row. Determine the number of groups that the magnets formed.

Input

The first line of the input contains an integer n (1 ≤ n ≤ 100000) — the number of magnets. Then n lines follow. The i-th line (1 ≤ i ≤ n) contains either characters "01", if Mike put the i-th magnet in the "plus-minus" position, or characters "10", if Mike put the magnet in the "minus-plus" position.

Output

On the single line of the output print the number of groups of magnets.

Examples

Input

6
10
10
10
01
10
10

Output

3

Input

4
01
01
10
10

Output

2

Note

The first testcase corresponds to the figure. The testcase has three groups consisting of three, one and two magnets.

The second testcase has two groups, each consisting of two magnets.

解题思路:很简单的一道题,就是求能分出多少块整体。做法:将其转化成字符串,从第三个字符开始,统计str[i]==str[i-1]的个数即为整体分成块的个数,水过!

AC代码:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int main(){
 4     int n,num=1;string str="",r;
 5     cin>>n;getchar();
 6     while(n--){cin>>r;str+=r;}
 7     for(unsigned int i=2;i<str.length();i+=2)
 8         if(str[i]==str[i-1])num++;
 9     cout<<num<<endl;
10     return 0;
11 }

 

转载于:https://www.cnblogs.com/acgoto/p/9162132.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
新能源汽车电机主要由以下几个零部件组成: 1. 定子(Stator):定子是电机的固定部分,通常由多个线圈组成,用于产生磁场。 2. 转子(Rotor):转子是电机的旋转部分,通常由永磁体或者绕组组成,通过与定子磁场的相互作用产生转矩。 3. 绕组(Windings):绕组是由导线组成的线圈,通过在定子或转子上绕制而成,用于传输电流和产生磁场。 4. 磁铁(Magnets):磁铁通常用于产生转子的磁场,可以是永磁体或者电磁铁。 5. 轴承(Bearings):轴承用于支撑和保持转子的旋转平稳,常见的有滚动轴承和滑动轴承。 6. 冷却系统(Cooling System):由于电机工作过程中会产生大量热量,冷却系统用于散热,保持电机的正常工作温度。常见的冷却方式包括水冷和风冷。 7. 传感器(Sensors):传感器用于监测和控制电机的工作状态,例如转速、温度、电流等参数。常见的传感器包括转速传感器、温度传感器和电流传感器等。 8. 控制器(Controller):控制器是电机的智能控制单元,用于接收和处理来自车辆系统的指令,并控制电机的转速、扭矩和功率输出等。 这些零部件共同协作,使得新能源汽车电机能够高效、可靠地转换电能为机械能,并驱动车辆进行运行。不同类型的新能源汽车电机可能会有一些细微的差异,但整体上这些零部件的功能和作用是相似的。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值