BaoBao has just found a grid with $n$ rows and $m$ columns in his left pocket, where the cell in the $j$-th column of the $i$-th row (indicated by $(i, j)$) contains an arrow (pointing either upwards, downwards, leftwards or rightwards) and an integer $a_{i, j}$.

BaoBao decides to play a game with the grid. He will first select a cell as the initial cell and tick it. After ticking a cell (let's say BaoBao has just ticked cell $(i, j)$), BaoBao will go on ticking another cell according to the arrow and the integer in cell $(i, j)$.

  • If the arrow in cell $(i, j)$ points upwards, BaoBao will go on ticking cell $(i-a_{i, j}, j)$ if it exists.
  • If the arrow in cell $(i, j)$ points downwards, BaoBao will go on ticking cell $(i+a_{i, j}, j)$ if it exists.
  • If the arrow in cell $(i, j)$ points leftwards, BaoBao will go on ticking cell $(i, j-a_{i, j})$ if it exists.
  • If the arrow in cell $(i, j)$ points rightwards, BaoBao will go on ticking cell $(i, j+a_{i, j})$ if it exists.

If the cell BaoBao decides to tick does not exist, or if the cell is already ticked, the game ends.

BaoBao is wondering if he can select a proper initial cell, so that he can tick every cell in the grid exactly once before the game ends. Please help him find the answer.

There are multiple test cases. The first line contains an integer $T$, indicating the number of test cases. For each test case:

The first line contains two integers $n$ and $m$ ($1 \le n \times m \le 10^5$), indicating the number of rows and columns of the grid.

For the following $n$ lines, the $i$-th line contains a string $s_i$ consisting of lowercased English letters ($|s_i| = m$, $s_{i, j} \in \{\text{'u' (ascii: 117)}, \text{'d' (ascii: 100)}, \text{'l' (ascii: 108)}, \text{'r' (ascii: 114)}\}$), where $s_{i, j}$ indicates the direction of arrow in cell $(i, j)$.

  • If $s_{i, j} = \text{'u'}$, the arrow in cell $(i, j)$ points upwards.
  • If $s_{i, j} = \text{'d'}$, the arrow in cell $(i, j)$ points downwards.
  • If $s_{i, j} = \text{'l'}$, the arrow in cell $(i, j)$ points leftwards.
  • If $s_{i, j} = \text{'r'}$, the arrow in cell $(i, j)$ points rightwards.

For the following $n$ lines, the $i$-th line contains $m$ integers $a_{i, 1}, a_{i, 2}, \dots, a_{i, m}$ ($1 \le a_{i, j} \le \max(n, m)$), where $a_{i, j}$ indicates the integer in cell $(i, j)$.

It's guaranteed that the sum of $n \times m$ of all test cases does not exceed $10^6$.

For each test case output one line. If BaoBao can find a proper initial cell, print "Yes" (without quotes), otherwise print "No" (without quotes).


题目概要:给定一个地图,每个地图的点给定下一步的方向和步长,问能否寻找到一点,可以遍历整个地图

为了进行操作,我们先将每个点的入度进行统计,先从0入度的点进行一次bfs(因为dfs好写,先写了dfs,看来数据不是很严格),看是否所有点都访问过了,如果有没有访问过的,说明不能遍历,特别的,如果没有0入度的点,说明任一点都可以通达,我们既可以随便dfs,也可以直接判正确

以下代码:

#include <cstdio>
#include <cstring>
#include <queue>

;
char str[MAXN];
int dig[MAXN];
int vis[MAXN];
int ind[MAXN];
int n, m;

void dfs(int x, int y) {
    //printf("%d %d\n",x,y);
     && y >=  && y <= m && vis[m * (x - ) + y] == false) {
        vis[m * (x - ) + y] = true;
        ) + y];
        ) + y] == 'u') dfs(x - step, y);
        ) + y] == 'd') dfs(x + step, y);
        ) + y] == 'l') dfs(x, y - step);
        ) + y] == 'r') dfs(x, y + step);
    }
}

 && y <= m && y >= )ind[m * (x - ) + y]++;}

void check(int x, int y) {
    ) + y];
    ) + y] == 'u') mflag(x - step, y);
    ) + y] == 'd') mflag(x + step, y);
    ) + y] == 'l') mflag(x, y - step);
    ) + y] == 'r') mflag(x, y + step);
}

int main() {
    int t;
    scanf("%d", &t);
    while (t--) {
        scanf("%d%d", &n, &m);
        ;i<=n*m;i++) vis[i]=;
        ;i<=n;i++) scanf()+m+);
        ; i <= n; i++)
            ; j <= m; j++)
                scanf() + j]),check(i, j);
        ,startj=;
        ; i <= n; i++) {
            bool tr = false;
            ; j <= m; j++) {
                ) * m + j] == ) {
                    starti=i,startj=j;
                    tr = true;
                    break;
                }
            }
            if (tr) break;
        }
        dfs(starti,startj);
        bool flag = true;
        ;i<=n*m;i++)
            if(!vis[i]) flag=false;
        if (flag) printf("Yes\n");
        else printf("No\n");
    }
    ;
}

最新文章

  1. Macaca自动化测试之PC端测试
  2. Apache+PHP+MySQL
  3. Macbook Pro安装win7
  4. C# PInvoke(DllImport使用) 进阶教程(一)转
  5. Corotational 模型代码
  6. Android 返回桌面的Intent
  7. hdu 1233 还是畅通工程 解题报告
  8. android linux shell 日期设置
  9. php操作mysql总结
  10. Unix/Linux之命令备忘录
  11. iOS中 Swift初级入门学习(一)
  12. Maven项目中,系统设置的CLASSPATH环境变量问题
  13. 【原创】大叔经验分享(48)oozie中通过shell执行impala
  14. 中国居民18位身份证号验证方法,Java算法实现
  15. Apache Maven入门篇(转)
  16. SQL Join 与 In的效率
  17. 对int数组排序
  18. JavaScript中的label语句,及应用
  19. (原)Show, Attend and Translate: Unsupervised Image Translation with Self-Regularization and Attention
  20. makefile 中的符号替换($@、$^、$&lt;、$?)

热门文章

  1. tensorflow中张量(tensor)的属性——维数(阶)、形状和数据类型
  2. 制作SD卡img文件,并扩容
  3. ACM学习历程—HDU1695 GCD(容斥原理 || 莫比乌斯)
  4. MySQL 和 InnoDB
  5. 洛谷【P1601】A+B Problem(高精)
  6. POJ1379:Run Away
  7. 利用dynamic来提供动态方法的性能
  8. POJ 1664 放苹果(递归或DP)
  9. Go和HTTPS
  10. JS开发中的一些小技巧和方法