AMBIG - Words on graphs
Input
The input is a directed (multi)graph.
The first line gives the number of edges M and the number of nodes N (>=2). Then each edge is described by a line of the form "FROM TO LABEL". Nodes (FROM, TO) are numbers in the range 0 .. N-1 and labels are also numbers.
All numbers in the input are non-negative integers less then 2000.
Output
Print "YES" if there are two distinct walks with the same labelling from node 0 to node 1, otherwise print "NO".
Example 1
Input:
4 4
0 2 0
0 3 0
2 1 1
3 1 2
Output:
NO
Example 2
Input:
10 9
0 2 0
2 1 0
2 3 0
3 4 0
4 2 0
2 5 0
5 6 0
6 7 0
7 8 0
8 2 0
Output:
YES
In this case the shortest labelling that appears on two walks is 0 repeated 10 times.
hide comments
:D:
2015-02-28 21:28:25
The problem definitively needs a clarification. I'll try to write a formal description.
|
|
David ©tefan:
2014-12-25 05:30:16
@ebd: "Repeated" edges are distinct edges, yes.
|
|
chipmunk:
2013-08-18 02:12:42
Can there be this type of traversal for NODE!
|
|
Akshay Kumar:
2013-07-12 18:03:52
Is the order of labelling required to be same or can the order be different?
|
|
Erik Lonèarek:
2012-12-30 14:19:18
The picture he meant to provide:
|
|
Goran Zuzic:
2012-05-07 18:15:34
I see a lot of people have some problem understanding the problem, so I'll clarify it the way I've seen it:
|
|
sava:
2012-04-12 17:00:50
Do we have to pass all edges with same label???
|
|
Nguyên:
2012-04-04 18:34:56
Is it possible that a walk contains repeated node?
|
|
Rita Cristian:
2012-04-01 23:30:25
Last edit: 2012-04-01 23:34:04 |
|
Radu Grigore:
2012-01-03 15:54:55
@ebd: "Repeated" edges are distinct edges, yes.
|
Added by: | Radu Grigore |
Date: | 2009-09-29 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL GOSU NODEJS PERL6 VB.NET |
Resource: | S Even, On Information Lossless Automata of Finite Order, 1965 |