A15745 | Letter Exchange
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A cooperative game is played by $m$ people. In the game, there are $3m$ sheets of paper: $m$ sheets with letter 'w', $m$ sheets with letter 'i', and $m$ sheets with letter 'n'.
Initially, each person is given three sheets (possibly with equal letters).
The goal of the game is to allow each of the $m$ people to spell the word "win" using their sheets of paper. In other words, everyone should have one sheet with letter 'w', one sheet with letter 'i', and one sheet with letter 'n'.
To achieve the goal, people can make exchanges. Two people participate in each exchange. Both of them choose exactly one sheet of paper from the three sheets they own and exchange it with each other.
Find the shortest sequence of exchanges after which everyone has one 'w', one 'i', and one 'n'.
Initially, each person is given three sheets (possibly with equal letters).
The goal of the game is to allow each of the $m$ people to spell the word "win" using their sheets of paper. In other words, everyone should have one sheet with letter 'w', one sheet with letter 'i', and one sheet with letter 'n'.
To achieve the goal, people can make exchanges. Two people participate in each exchange. Both of them choose exactly one sheet of paper from the three sheets they own and exchange it with each other.
Find the shortest sequence of exchanges after which everyone has one 'w', one 'i', and one 'n'.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^4$ ). The description of the test cases follows.
The first line of each test case contains a single integer $m$ ( $2 \le m \le 10^5$ ) — the number of people.
The $i$ -th of the next $m$ lines contains a string $s_i$ of length $3$ consisting of lowercase English letters 'w', 'i', and 'n', denoting the letters person $i$ has on their sheets of paper at the beginning of the game, in arbitrary order.
Each of the letters 'w', 'i', and 'n' appears on the sheets of paper exactly $m$ times in total.
It is guaranteed that the sum of $m$ over all test cases does not exceed $10^5$ .
The first line of each test case contains a single integer $m$ ( $2 \le m \le 10^5$ ) — the number of people.
The $i$ -th of the next $m$ lines contains a string $s_i$ of length $3$ consisting of lowercase English letters 'w', 'i', and 'n', denoting the letters person $i$ has on their sheets of paper at the beginning of the game, in arbitrary order.
Each of the letters 'w', 'i', and 'n' appears on the sheets of paper exactly $m$ times in total.
It is guaranteed that the sum of $m$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, print a non-negative integer $k$ — the smallest number of exchanges people need to make everyone have one 'w', one 'i', and one 'n'.
In each of the next $k$ lines print four tokens $a_1$ $c_1$ $a_2$ $c_2$ , describing the exchanges in chronological order ( $1 \le a_1, a_2 \le m$ ; $a_1 \ne a_2$ ; $c_1, c_2$ are one of $\{\mathtt{w}, \mathtt{i}, \mathtt{n}\}$ ): person $a_1$ gives letter $c_1$ to person $a_2$ , while person $a_2$ gives letter $c_2$ to person $a_1$ at the same time.
If there are multiple solutions, print any.
In each of the next $k$ lines print four tokens $a_1$ $c_1$ $a_2$ $c_2$ , describing the exchanges in chronological order ( $1 \le a_1, a_2 \le m$ ; $a_1 \ne a_2$ ; $c_1, c_2$ are one of $\{\mathtt{w}, \mathtt{i}, \mathtt{n}\}$ ): person $a_1$ gives letter $c_1$ to person $a_2$ , while person $a_2$ gives letter $c_2$ to person $a_1$ at the same time.
If there are multiple solutions, print any.
输入输出样例
输入 #1
3 2 nwi inw 3 inn nww wii 4 win www iii nnn
输出 #1
0 2 2 w 3 i 3 w 1 n 3 2 w 3 i 2 w 4 n 3 i 4 n
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted