1793Switch

1793   Switch

题目描述

There are N lights in a line. Given the states (on/off) of the lights, your task is to determine at least how many lights should be switched (from on to off, or from off to on), in order to make the lights on and off alternatively.

输入格式:

One line for each testcase.

The integer N (1 <= N <= 10000) comes first and is followed by N integers representing the states of the lights ("1" for on and "0" for off).

Process to the end-of-file.

输出格式:

For each testcase output a line consists of only the least times of switches.

输入样例 复制
3 1 1 1
3 1 0 1
输出样例 复制
1
0

说明

14
24
通过提交
时空限制2000ms/64mb
题目来源
评测方式在线评测
题目类型
难        度