codeforces B. Strongly Connected City(dfs水过)

简介:
题意:有横向和纵向的街道,每个街道只有一个方向,垂直的街道相交会产生一个节点,这样每个节点都有两个方向,
问是否每一个节点都可以由其他的节点到达....
思路:规律没有想到,直接爆搜!每一个节点dfs一次,记录每个节节点被访问的次数!如果每个节点最终的访问次数

和所有节点的数目相同,则输出“YES", 否则输出”NO“


#include <queue>
#include <string>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

char s1[25], s2[25];
int vis[25][25];
int cnt[25][25];
int n, m;

void dfs(int x, int y){
    if(x<1 || x>n || y<1 || y>m || vis[x][y]) return;
    ++cnt[x][y];
    vis[x][y] = 1;
    if(s1[x] == '<')
        dfs(x, y-1);
    else dfs(x, y+1);

    if(s2[y] == 'v')
        dfs(x+1, y);
    else dfs(x-1, y);
}

int main(void)
{
    scanf("%d%d", &n, &m);
    scanf("%s%s", s1+1, s2+1);

    for(int i=1; i<=n; ++i)
        for(int j=1; j<=m; ++j){
            memset(vis, 0, sizeof(vis));
            dfs(i, j);
        }
    int s = n*m;
    for(int i =1; i<=n; ++i)
            for(int j=1; j<=m; ++j)
                if(cnt[i][j] != s){
                    cout<<"NO"<<endl;
                    return 0;
                }
    cout<<"YES"<<endl;
    return 0;
}


目录
相关文章
|
6月前
|
流计算
POJ 3620--Avoid The Lakes【DFS】
POJ 3620--Avoid The Lakes【DFS】
29 0
|
算法
1091 zoj Knight Moves的BFS算法和DFS
1091 zoj Knight Moves的BFS算法和DFS
56 0
|
Java
hdu1016 Prime Ring Problem【素数环问题(经典dfs)】
hdu1016 Prime Ring Problem【素数环问题(经典dfs)】
47 0
Find The Multiple(dfs和bfs都可)
Find The Multiple(dfs和bfs都可)
26 0
CF711D-Directed Roads(组合数学 dfs找环)
CF711D-Directed Roads(组合数学 dfs找环)
82 0
CF711D-Directed Roads(组合数学 dfs找环)
codeforces1244——D.Paint the Tree(dfs)
codeforces1244——D.Paint the Tree(dfs)
84 0
HDU-1016,Prime Ring Problem(DFS+素数)
HDU-1016,Prime Ring Problem(DFS+素数)
|
算法
HDU-1050,Moving Tables(不用贪心也AC)
HDU-1050,Moving Tables(不用贪心也AC)
AtCoder--755——dfs
题目描述 You are given an integer N. Among the integers between 1 and N (inclusive), how many Shichi-Go-San numbers (literally “Seven-Five-Three numbers”) are there? Here, a Shichi-Go-San number is a positive integer that satisfies the following condition:
100 0