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
hide comments
.:: Jarv1s ::.:
2014-08-10 00:50:28
4 3
|
|
mohsin mohammad:
2014-08-06 16:37:56
My first graph problem AC in first attempt
|
|
Vignesh:
2014-07-30 05:04:12
I second dragonemporer. I aced with failing to build a proper graph. |
|
Hammad Akhtar:
2014-07-25 12:55:37
easy one.
|
|
Navneet M Kumar:
2014-07-20 09:05:12
Can someone provide some test cases ?
|
|
Naruto uzumaki:
2014-07-18 12:22:32
first graph problem ever :) |
|
Shireen Nagdive:
2014-07-09 11:45:30
Can anyone give hints how to solve the code without dfs and bfs? |
|
chin:
2014-07-05 16:20:30
getting seg fault..:(
|
|
Manu Narsaria:
2014-06-11 10:14:08
Submission ID:11738679
|
|
dragonemperor:
2014-05-26 06:40:47
Weak test case. In none of the cases, number of edges is less than number of vertices. I have a condition that checks if number of edges is less than number of vertices minus 1. If it satisfies, my code is not taking edges as input but I still got AC. |
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 |