Educational Codeforces Round 115 (Rated for Div. 2) A. Computer Game

题目链接:Problem - 1598A - Codeforces

Monocarp is playing a computer game. Now he wants to complete the first level of this game.

A level is a rectangular grid of 22 rows and nn columns. Monocarp controls a character, which starts in cell (1,1)(1,1) — at the intersection of the 11-st row and the 11-st column.

Monocarp's character can move from one cell to another in one step if the cells are adjacent by side and/or corner. Formally, it is possible to move from cell (x1,y1)(x1,y1) to cell (x2,y2)(x2,y2) in one step if |x1−x2|≤1|x1−x2|≤1 and |y1−y2|≤1|y1−y2|≤1. Obviously, it is prohibited to go outside the grid.

There are traps in some cells. If Monocarp's character finds himself in such a cell, he dies, and the game ends.

To complete a level, Monocarp's character should reach cell (2,n)(2,n) — at the intersection of row 22 and column nn.

Help Monocarp determine if it is possible to complete the level.

Input

The first line contains a single integer tt (1≤t≤1001≤t≤100) — the number of test cases. Then the test cases follow. Each test case consists of three lines.

The first line contains a single integer nn (3≤n≤1003≤n≤100) — the number of columns.

The next two lines describe the level. The ii-th of these lines describes the ii-th line of the level — the line consists of the characters '0' and '1'. The character '0' corresponds to a safe cell, the character '1' corresponds to a trap cell.

Additional constraint on the input: cells (1,1)(1,1) and (2,n)(2,n) are safe.

Output

For each test case, output YES if it is possible to complete the level, and NO otherwise.

Example

input

Copy

4
3
000
000
4
0011
1100
4
0111
1110
6
010101
101010

output

Copy

YES
YES
NO
YES

Note

Consider the example from the statement.

In the first test case, one of the possible paths is (1,1)→(2,2)→(2,3)(1,1)→(2,2)→(2,3).

In the second test case, one of the possible paths is (1,1)→(1,2)→(2,3)→(2,4)(1,1)→(1,2)→(2,3)→(2,4).

In the fourth test case, one of the possible paths is (1,1)→(2,2)→(1,3)→(2,4)→(1,5)→(2,6)(1,1)→(2,2)→(1,3)→(2,4)→(1,5)→(2,6).

题意:一个2行n列的迷宫,从1,1出发, 可以横着,纵着,斜着走,0表示可以走,1表示不能走,问可否到达(2, n)

思路:如果有一列全为1就无法到达

#include<bits/stdc++.h>
using namespace std;

string s[5];

int main(){
	int t;
	cin >> t;
	int n;
	while(t--){
		cin >> n;
		for(int i = 0; i < 2; i++){
			cin >> s[i];
		}
		bool flag = 0;
		for(int i = 0; i < n; i++){
			if(s[0][i] == '1' && s[1][i] == '1'){
				flag = 1;
				break;
			}
		}
		if(flag){
			cout << "NO" << endl;
		}else{
			cout << "YES" << endl;
		}
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值