CodeForces-1234C-パイプ-DFS

あなたは、パイプのシステムを与えられています。それは、2つの列で構成され、各行は、から成り  、N、Nパイプ。左上パイプ座標有する  1 1 - (1,1)と右下の  2 N (2、n)を。

直管の二つのタイプと湾曲管4種類:パイプの6種類があります。ここでは、すべての6つのタイプの例は以下のとおりです。

パイプの種類

あなたは、与えられたパイプのそれぞれを回すことができる  90 90度時計方向または反時計方向  の任意の(おそらくゼロ)回数(SOタイプ  1 1、  2 2が互いにタイプになることができ  3 4 5 6 3,4,5 、6)が互いになることができます。

あなたは、水の流れがで始めることができるような方法で、いくつかのパイプを有効にする  1 0 、(左上パイプの左側)(1,0)でパイプに移動する  1 1 、(1 1)によって何とか流れ  で管に接続パイプ  2 N (2、n)と右に流れ  2 N + 1 (2、N + 1)。

彼らは、システム内の隣接しており、その端部が接続されている場合はパイプが接続されています。ここでは、接続パイプの例は以下のとおりです。

接続されたパイプの例

のは、いくつかの例を使用して問題を説明してみましょう:

第1の実施の入力

そして、その解決策は以下の通りです:

第1の実施の回答

As you can see, the water flow is the poorly drawn blue line. To obtain the answer, we need to turn the pipe at (1,2)(1,2) 9090 degrees clockwise, the pipe at (2,3)(2,3) 9090 degrees, the pipe at (1,6)(1,6) 9090 degrees, the pipe at (1,7)(1,7) 180180 degrees and the pipe at (2,7)(2,7) 180180degrees. Then the flow of water can reach (2,n+1)(2,n+1) from (1,0)(1,0).

You have to answer qq independent queries.

Input

The first line of the input contains one integer qq (1q1041≤q≤104) — the number of queries. Then qq queries follow.

Each query consists of exactly three lines. The first line of the query contains one integer nn (1n21051≤n≤2⋅105) — the number of pipes in each row. The next two lines contain a description of the first and the second rows correspondingly. Each row description consists of nndigits from 11 to 66 without any whitespaces between them, each digit corresponds to the type of pipe in the corresponding cell. See the problem statement to understand which digits correspond to which types of pipes.

It is guaranteed that the sum of nn over all queries does not exceed 21052⋅105.

Output

For the ii-th query print the answer for it — "YES" (without quotes) if it is possible to turn some pipes in a way that the water flow can reach (2,n+1)(2,n+1) from (1,0)(1,0), and "NO" otherwise.

 

input
6
7
2323216
1615124
1
3
4
2
13
24
2
12
34
3
536
345
2
46
54
output
YES
YES
YES
NO
YES
NO
Note

The first query from the example is described in the problem statement.

 

 题意:

给出t组数据,每组数据给出两组长度为n的字符串,拼接起来代表一个长为n宽为2的长方形,水(0,0)进入,从右下角那个格子横着流出。若能从开头流出去,输出YES,否则输出NO。

水管有以下几种类型,可以90度旋转任意次,因为可以通过旋转得到,所以1、2可以看作是A类型,3-6可以看作是B类型。

 

 

思路:

首先判断起点是什么类型的水管,进行dfs,自己定义四个方向(上下左右),开始进行dfs。dfs(x,y,ss),x、y代表传入的下标,表示当前走到的点,ss表示当前的流向,然后再对当前流向所能到达的那个点

进行一下流向判断,判断其能流到哪里去。

 

 1 #include<stdio.h>
 2 #include<string.h>
 3 
 4 int flag,n;
 5 char a[2][200020];
 6 
 7 //1左、2下、3右、4上
 8 
 9 void dfs(int x,int y,int ss)//从a[x][y]流过来,方向ss
10 {
11     if(y>=n)
12         return;
13     if(x==1&&y==n-1&&ss==3)//x、y表示已经走到右下角了,ss=3表示是横着流出去的,符合题意
14     {
15         flag=1;
16         return;
17     }
18     if(x==0)//从上一行流过来的,方向只能是向下或者向右
19     {
20         if(ss==2)//判断的流过来的方向是怎么样的,向下流过来的
21         {
22             if(a[x+1][y]!='1'&&a[x+1][y]!='2')
23                 dfs(x+1,y,3);
24         }
25         else if(ss==3)//向右流过来的
26         {
27             if(a[x][y+1]=='1'||a[x][y+1]=='2')
28                 dfs(x,y+1,3);
29             else dfs(x,y+1,2);
30         }
31     }
32     else if(x==1)//从下一行流过来的,方向只能是向上或者向右
33     {
34         if(ss==4)//
35         {
36             if(a[x-1][y]!='1'&&a[x-1][y]!='2')
37                 dfs(x-1,y,3);
38         }
39         else if(ss==3)//
40         {
41             if(a[x][y+1]=='1'||a[x][y+1]=='2')
42                 dfs(x,y+1,3);
43             else
44                 dfs(x,y+1,4);
45         }
46     }
47 }
48 
49 int main()
50 {
51     int t;
52     scanf("%d",&t);
53     while(t--)
54     {
55         scanf("%d",&n);
56         scanf("%s %s",a[0],a[1]);
57         flag=0;
58         if(a[0][0]=='1'||a[0][0]=='2')//只能向右走
59             dfs(0,0,3);
60         else//不然只能向下走
61             dfs(0,0,2);
62         if(flag)
63             printf("YES\n");
64         else
65             printf("NO\n");
66     }
67     return 0;
68 }

 

おすすめ

転載: www.cnblogs.com/OFSHK/p/11620296.html