301448: CF272E. Dima and Horses
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Dima and Horses
题目描述
Dima came to the horse land. There are $ n $ horses living in the land. Each horse in the horse land has several enemies (enmity is a symmetric relationship). The horse land isn't very hostile, so the number of enemies of each horse is at most 3. Right now the horse land is going through an election campaign. So the horses trusted Dima to split them into two parts. At that the horses want the following condition to hold: a horse shouldn't have more than one enemy in its party. Help Dima split the horses into parties. Note that one of the parties can turn out to be empty.输入输出格式
输入格式
The first line contains two integers $ n,m $ ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF272E/dac9c4b7533b005d45a40124a615b184d0f4824d.png) — the number of horses in the horse land and the number of enemy pairs. Next $ m $ lines define the enemy pairs. The $ i $ -th line contains integers $ a_{i},b_{i} $ $ (1<=a_{i},b_{i}<=n; a_{i}≠b_{i}) $ , which mean that horse $ a_{i} $ is the enemy of horse $ b_{i} $ . Consider the horses indexed in some way from 1 to $ n $ . It is guaranteed that each horse has at most three enemies. No pair of enemies occurs more than once in the input.
输出格式
Print a line, consisting of $ n $ characters: the $ i $ -th character of the line must equal "0", if the horse number $ i $ needs to go to the first party, otherwise this character should equal "1". If there isn't a way to divide the horses as required, print -1.
输入输出样例
输入样例 #1
3 3
1 2
3 2
3 1
输出样例 #1
100
输入样例 #2
2 1
2 1
输出样例 #2
00
输入样例 #3
10 6
1 2
1 3
1 4
2 3
2 4
3 4
输出样例 #3
0110000000