CodeForces 117C Cycle 搜索

题意

求一个长度为3的环。

题解

枚举中间的点判断fa和child的关系?
一个dfs即可。
作死在读入图的时候用scanf(“%1d”, &g[i][j])
然后TLE 233。

代码

#include <cstdio>
const int N = 5005;
int n, a, b, c, g[N][N], vis[N];
bool dfs(int u, int fa) {
    vis[u] = 1;
    for (int v = 1; v <= n; v++)
        if (g[u][v]) {
            if (fa && g[v][fa]) {
                a = fa; b = u; c = v;
                return 1;
            }
            if (!vis[v]) if (dfs(v, u)) return 1;
        }
    return 0;
}

char valid_char() {
    char ch = getchar();
    for (; ch < '0' || ch > '9'; ch = getchar());
    return ch;
}

int main() {
    int i, j;
    scanf("%d", &n);
    for (i = 1; i <= n; i++)
        for (j = 1; j <= n; j++)
            g[i][j] = valid_char() - '0';
    for (i = 1; i <= n; i++)
        if (!vis[i]) if (dfs(i, 0)) {
            printf("%d %d %d", a, b, c);
            return 0;
        }
    puts("-1");
    return 0;
}

C. Cycle

time limit per test2.5 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
A tournament is a directed graph without self-loops in which every pair of vertexes is connected by exactly one directed edge. That is, for any two vertexes u and v (u ≠ v) exists either an edge going from u to v, or an edge from v to u.

You are given a tournament consisting of n vertexes. Your task is to find there a cycle of length three.

Input

The first line contains an integer n (1 ≤ n ≤ 5000). Next n lines contain the adjacency matrix A of the graph (without spaces). Ai, j = 1 if the graph has an edge going from vertex i to vertex j, otherwise Ai, j = 0. Ai, j stands for the j-th character in the i-th line.

It is guaranteed that the given graph is a tournament, that is, Ai, i = 0, Ai, j ≠ Aj, i (1 ≤ i, j ≤ n, i ≠ j).

Output

Print three distinct vertexes of the graph a1, a2, a3 (1 ≤ ai ≤ n), such that Aa1, a2 = Aa2, a3 = Aa3, a1 = 1, or “-1”, if a cycle whose length equals three does not exist.

If there are several solutions, print any of them.

Sample test(s)

input

5
00100
10000
01001
11101
11000

output

1 3 2 

input

5
01111
00000
01000
01100
01110

output

-1

你可能感兴趣的:(搜索,codeforces)