A13816 | BubbleSquare Tokens
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
BubbleSquare social network is celebrating $13^{th}$ anniversary and it is rewarding its members with special edition BubbleSquare tokens. Every member receives one personal token. Also, two additional tokens are awarded to each member for every friend they have on the network. Yet, there is a twist – everyone should end up with different number of tokens from all their friends. Each member may return one received token. Also, each two friends may agree to each return one or two tokens they have obtained on behalf of their friendship.
输入格式
First line of input contains two integer numbers $n$ and $k$ ( $2$ $\leq$ $n$ $\leq$ $12500$ , $1$ $\leq$ $k$ $\leq$ $1000000$ ) - number of members in network and number of friendships.
Next $k$ lines contain two integer numbers $a_i$ and $b_i$ ( $1$ $\leq$ $a_i$ , $b_i$ $\leq$ $n$ , $a_i$ $\neq$ $b_i$ ) - meaning members $a_i$ and $b_i$ are friends.
Next $k$ lines contain two integer numbers $a_i$ and $b_i$ ( $1$ $\leq$ $a_i$ , $b_i$ $\leq$ $n$ , $a_i$ $\neq$ $b_i$ ) - meaning members $a_i$ and $b_i$ are friends.
输出格式
First line of output should specify the number of members who are keeping their personal token.
The second line should contain space separated list of members who are keeping their personal token.
Each of the following $k$ lines should contain three space separated numbers, representing friend pairs and number of tokens each of them gets on behalf of their friendship.
The second line should contain space separated list of members who are keeping their personal token.
Each of the following $k$ lines should contain three space separated numbers, representing friend pairs and number of tokens each of them gets on behalf of their friendship.
输入输出样例
输入 #1
2 1 1 2
输出 #1
1 1 1 2 0
输入 #2
3 3 1 2 1 3 2 3
输出 #2
0 1 2 0 2 3 1 1 3 2
In the first test case, only the first member will keep its personal token and no tokens will be awarded for friendship between the first and the second member.
In the second test case, none of the members will keep their personal token. The first member will receive two tokens (for friendship with the third member), the second member will receive one token (for friendship with the third member) and the third member will receive three tokens (for friendships with the first and the second member).
In the second test case, none of the members will keep their personal token. The first member will receive two tokens (for friendship with the third member), the second member will receive one token (for friendship with the third member) and the third member will receive three tokens (for friendships with the first and the second member).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted