BestCoder Round #67 (2/4)

maksyuki 发表于 比赛 分类,标签:
4

A N bulbs

Problem Description

N bulbs are in a row from left to right,some are on, and some are off.The first bulb is the most left one. And the last one is the most right one.they are numbered from 1 to n,from left to right.

in order to save electricity, you should turn off all the lights, but you're lazy.
coincidentally,a passing bear children paper(bear children paper means the naughty boy), who want to pass here from the first light bulb to the last one and leave.

he starts from the first light and just can get to the adjacent one at one step.
But after all,the bear children paper is just a bear children paper. after leaving a light bulb to the next one, he must touch the switch, which will change the status of the light.

your task is answer whether it's possible or not to finishing turning off all the lights, and make bear children paper also reach the last light bulb and then leave at the same time.

Input

The first line of the input file contains an integer T, which indicates the number of test cases.

For each test case, there are 2 lines.

The first line of each test case contains 1 integers n.

In the following line contains a 01 sequence, 0 means off and 1 means on.

* 1≤T≤10
* 1≤N≤1000000

Output

There should be exactly T lines in the output file.

The i-th line should only contain "YES" or "NO" to answer if it's possible to finish.

Sample Input

1

5

1 0 0 0 0

Sample Output

YES

HintChild's path is: 123234545

all switchs are touched twice except the first one.

Source

BestCoder Round #67 (div.2)

 

题目类型:数学构造

算法分析:简单分析可知序列中需要出现偶数个0,这样序列总数和”1”的个数只要满足同奇偶即可

 

B N*M bulbs

Problem Description

N*M bulbs are in a rectangle, some are on, and some are off.

in order to save electricity, you should turn off all the lights, but you're lazy.
coincidentally,a passing bear children paper(bear children paper means the naughty boy), who want to pass here from the top left light bulb to the bottom right one and leave.

he starts from the top left light and just can get to the adjacent one in one step.
But after all,the bear children paper is just a bear children paper. after leaving a light bulb to the next one, he must touch the switch, which will change the status of the light.

your task is answer whether it's possible or not to finishing turning off all the lights, and make bear children paper also reach the bottom right light bulb and then leave at the same time.

Input

The first line of the input file contains an integer T, which indicates the number of test cases.

For each test case, there are n+1 lines.

The first line of each test case contains 2 integers n,m.

In the following n line contains a 01 square, 0 means off and 1 means on.

* T≤10
* N,M≤1000

Output

There should be exactly T lines in the output file.

The i-th line should only contain "YES" or "NO" to answer if it's possible to finish.

Sample Input

1

1 5

1 0 0 0 0

Sample Output

YES

HintChild's path is: (1,1)(1,2)(1,3)(1,2)(1,3)(1,4)(1,5)(4,5)

all switches are touched twice except the first one.

Source

BestCoder Round #67 (div.2)

 

题目类型:数学构造

算法分析:和上面的题很类似,这里”1”的个数表示要对其翻转的次数,而通过题面可知每操作一次就会使得预计到达(n, m)点的数字发生翻转。所以只要满足到达(n,m - 1)或(n - 1, m)点处的时候和翻转的次数同奇偶,则有解。反之,则无解