A12239 | Odd Federalization
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Berland has $n$ cities, some of which are connected by roads. Each road is bidirectional, connects two distinct cities and for each two cities there's at most one road connecting them.
The president of Berland decided to split country into $r$ states in such a way that each city will belong to exactly one of these $r$ states.
After this split each road will connect either cities of the same state or cities of the different states. Let's call roads that connect two cities of the same state "inner" roads.
The president doesn't like odd people, odd cities and odd numbers, so he wants this split to be done in such a way that each city would have even number of "inner" roads connected to it.
Please help president to find smallest possible $r$ for which such a split exists.
The president of Berland decided to split country into $r$ states in such a way that each city will belong to exactly one of these $r$ states.
After this split each road will connect either cities of the same state or cities of the different states. Let's call roads that connect two cities of the same state "inner" roads.
The president doesn't like odd people, odd cities and odd numbers, so he wants this split to be done in such a way that each city would have even number of "inner" roads connected to it.
Please help president to find smallest possible $r$ for which such a split exists.
输入格式
The input contains one or several test cases. The first input line contains a single integer number $t$ — number of test cases. Then, $t$ test cases follow. Solve test cases separately, test cases are completely independent and do not affect each other.
Then $t$ blocks of input data follow. Each block starts from empty line which separates it from the remaining input data. The second line of each block contains two space-separated integers $n$ , $m$ ( $1 \le n \le 2000$ , $0 \le m \le 10000$ ) — the number of cities and number of roads in the Berland. Each of the next $m$ lines contains two space-separated integers — $x_i$ , $y_i$ ( $1 \le x_i, y_i \le n$ ; $x_i \ne y_i$ ), which denotes that the $i$ -th road connects cities $x_i$ and $y_i$ . Each pair of cities are connected by at most one road.
Sum of values $n$ across all test cases doesn't exceed $2000$ . Sum of values $m$ across all test cases doesn't exceed $10000$ .
Then $t$ blocks of input data follow. Each block starts from empty line which separates it from the remaining input data. The second line of each block contains two space-separated integers $n$ , $m$ ( $1 \le n \le 2000$ , $0 \le m \le 10000$ ) — the number of cities and number of roads in the Berland. Each of the next $m$ lines contains two space-separated integers — $x_i$ , $y_i$ ( $1 \le x_i, y_i \le n$ ; $x_i \ne y_i$ ), which denotes that the $i$ -th road connects cities $x_i$ and $y_i$ . Each pair of cities are connected by at most one road.
Sum of values $n$ across all test cases doesn't exceed $2000$ . Sum of values $m$ across all test cases doesn't exceed $10000$ .
输出格式
For each test case first print a line containing a single integer $r$ — smallest possible number of states for which required split is possible. In the next line print $n$ space-separated integers in range from $1$ to $r$ , inclusive, where the $j$ -th number denotes number of state for the $j$ -th city. If there are multiple solutions, print any.
输入输出样例
输入 #1
2 5 3 1 2 2 5 1 5 6 5 1 2 2 3 3 4 4 2 4 1
输出 #1
1 1 1 1 1 1 2 2 1 1 1 1 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted