Submit | All submissions | Best solutions | Back to list |
PT07Y - Is it a tree |
You are given an unweighted, undirected graph. Write a program to check if it's a tree topology.
Input
The first line of the input file contains two integers N and M --- number of nodes and number of edges in the graph (0 < N <= 10000, 0 <= M <= 20000). Next M lines contain M edges of that graph --- Each line contains a pair (u, v) means there is an edge between node u and node v (1 <= u, v <= N).
Output
Print YES if the given graph is a tree, otherwise print NO.
Example
Input: 3 2 1 2 2 3 Output: YES
Added by: | Thanh-Vy Hua |
Date: | 2007-03-28 |
Time limit: | 0.5s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO |
Resource: | Co-author Amber |
hide comments
|
||||||||||||||
2014-05-20 22:09:10 Suraj Rajan
cycles and connectedness..!! :) |
||||||||||||||
2014-04-23 20:18:04 Sudarshan K
My very first DFS problem. :) |
||||||||||||||
2014-04-11 18:37:26 sehwag
easyone... Last edit: 2014-04-11 18:40:52 |
||||||||||||||
2014-04-11 13:03:18 innovolt
gud1 nd easy1 simple dfs |
||||||||||||||
2014-03-29 21:25:37 Anubhav Balodhi
Easier than I thought... agreed with both the points of @Rastogi.. |
||||||||||||||
2014-03-17 11:59:31 heatOn
No need for BFS or DFS !! easy one . |
||||||||||||||
2014-03-06 04:51:00 californiagurl
for a given test case can multiple edges exist between two nodes? is the best method similar to kruskal's MST algo or DFS/BFS? Last edit: 2014-03-06 16:48:52 |
||||||||||||||
2014-02-13 19:23:19 hiddenman
easy 1..... :) |
||||||||||||||
2014-02-02 08:25:13 sonam
mai DFS use kar rahi hu to wo to O(2*E) me ho jata hai to phir TLE kyo plz tell me.mai bahut dino se try kar rahi hu |
||||||||||||||
2014-02-02 08:22:23 sonam
i am using adjecency list and use DFS. still i m getting TLE.can any one tell me why plzzzzzzzzzzz. |