|
||||||||||
Bipartite GraphTime Limit: 10000/5000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 928 Accepted Submission(s): 343 Problem Description soda has a undirected graph with $n$ vertices and $m$ edges. He wants to make the graph become a bipartite graph by deleting only one vertex. You need to tell him which vertex can be deleted. Input There are multiple test cases. The first line of input contains an integer $T$, indicating the number of test cases. For each test case: The first contains two integer $n$ and $m$ $(1 \le n, m \le 10^5)$, the number of vertices and the number of edges. Next $m$ lines contain two integers each, $u_i$ and $v_i$ $(1 \le u_i,v_i \le n, u_i \ne v_i)$ , indicating there is an edge between vertices $u_i$ and $v_i$. Output For each test case, output binary string of length $n$. The $i$-th character is '1' if soda can delete $i$-th vertex to make the graph become a bipartite graph, otherwise the $i$-th character is '0'. Sample Input
Sample Output
Hint If you need a larger stack size, please use #pragma comment(linker, "/STACK:102400000,102400000") and submit your solution using C++. Author zimpha@zju Source | ||||||||||
|