-
Notifications
You must be signed in to change notification settings - Fork 0
/
1234C Pipes.cpp
75 lines (69 loc) · 1.76 KB
/
1234C Pipes.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <bits/stdc++.h>
using namespace std;
template<class C> void mini(C&a, C b){ a=min(a, b);}
template<class C> void maxi(C&a, C b){a=max(a,b);}
#define sz(x) x.size()
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define mt make_tuple
#define forall(it,s) for(auto it = s.begin(); it != s.end(); ++it)
#define F0(i,n) for(int i = 0; i < n; i++)
#define F1(i,n) for(int (i) = 1; i <= n; i++)
#define F0R(i,n) for(int (i) = n-1; i >= 0; i--)
#define F1R(i,n) for(int (i) = n; i >= 1; i--)
#define REP(i,a,b) for(int i = a; i <= b; i++)
#define REPR(i,a,b) for(int i = a; i >= b; i--)
#define INF 1e9
#define todo(v) v.begin(),v.end()
#define eps 0.000000000001
#define mod 1000000007
#define PI acos(-1.0)
#define ll long long
#define fast ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<double> vd;
typedef vector<char> vc;
typedef vector<string> vs;
typedef set<int> si;
typedef set<ll> sl;
typedef set<double> sd;
typedef set<char> sc;
typedef set<string> ss;
typedef map<int,int> mi;
typedef map<ll,ll> ml;
typedef map<double,int> md;
typedef map<char,int> mc;
typedef map<string,int> ms;
string s, t;
int n, m;
//ll a, b;
void solve(){
cin >> n;
vector<string> ch(2);
F0(i,2) cin >> ch[i];
bool act = 0, ot;
F0(i,n){
ot = !act;
if(ch[act][i] <= '2'){
continue;
}else{
if(ch[ot][i] > '2'){
act = ot;
}else{
cout << "NO\n";
return;
}
}
}
string ans = (act)?"YES":"NO";
cout << ans << endl;
}
int main(){
int t;
cin >> t;
while(t--) solve();
return 0;
}