LaLa and Lamp

아직 제출이 없습니다시간 제한3초메모리 제한1024 MB

문제

When LaLa\color{blue}{\text{LaLa}} laid down on her pet Leo\color{brown}{\text{Leo}}'s back to fall asleep, she noticed that the lamp is all messed up, which must have been the act of her sister LiLi\color{purple}{\text{LiLi}}.

The lamp can be modeled as a regular triangular grid where each cell contains a bulb which is either on or off.

LaLa\color{blue}{\text{LaLa}} wants to turn off the lamp (that is, set the state of all bulbs to off). LaLa\color{blue}{\text{LaLa}} can pick any of the three directions parallel to the side of a lamp, pick any row parallel to that direction, and then flip the state of all the bulbs in the row (on to off and off to on) with her magic\color{red}{\text{m}} \color{brown}{\text{a}} \color{orange}{\text{g}} \color{blue}{\text{i}} \color{magenta} {\text{c}}. LaLa\color{blue}{\text{LaLa}} also could just walk over to the lamp and manually turn every bulb off, but she would prefer not to.

Write a program that determines whether LaLa\color{blue}{\text{LaLa}} can turn off the lamp with her magic\color{red}{\text{m}} \color{brown}{\text{a}} \color{orange}{\text{g}} \color{blue}{\text{i}} \color{magenta} {\text{c}}.

입력

The input is given in the following format:

NN

S_0S\_0

S_1S\_1

\vdots

S_N1S\_{N-1}

where NN is the number of bulbs in a side of the lamp, and S_iS\_i is the binary string of length i+1i+1 representing the initial states of bulbs in the ii-th row, where the jj-th character of S_iS\_i is '1' if and only if the jj-th bulb is on.

The input satisfies the following constraint:

  • NN is an integer.
  • 2N2,0002 \le N \le 2\\,000

출력

If LaLa\color{blue}{\text{LaLa}} can turn off the lamp with magic\color{red}{\text{m}} \color{brown}{\text{a}} \color{orange}{\text{g}} \color{blue}{\text{i}} \color{magenta} {\text{c}}, print a single string "Yes". Otherwise, print a single string "No". You may print each character in either case (lower or upper).

힌트

The following illustrates a sequence of magic\color{red}{\text{m}} \color{brown}{\text{a}} \color{orange}{\text{g}} \color{blue}{\text{i}} \color{magenta} {\text{c}} LaLa\color{blue}{\text{LaLa}} should cast to turn off the lamp given in the sample. Empty circles denote the bulbs that are off, yellow circles denote the bulbs that are on, and red line is the choosen row for magic\color{red}{\text{m}} \color{brown}{\text{a}} \color{orange}{\text{g}} \color{blue}{\text{i}} \color{magenta} {\text{c}}.

Step 0Step 1Step 2
Step 3Step 4Step 5
Step 6