CF269E.String Theory
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first line of input contains two space-separated integers numbers n and m ( 1<=n,m<=105 ), the height and width of the harp in units. Each of the following n+m lines contains 4 space-separated tokens, describing a single string: two symbols ai , bi and two integer numbers pi , qi . The pair ai , pi describes the first pin, and the pair bi , qi describes the second pin of the string;
A pair s , x describes the position of a single pin in a following way:
- s is equal to one of the symbols "L", "T", "R" or "B" (without quotes), which means that the pin is positioned on the left, top, right or bottom side of the harp accordingly;
- x is equal to the number of the row, if the pin is on the left or right border of the harp, and to the number of the column, if the pin is on the top or bottom border of the harp.
It is guaranteed that no two different strings are connected to the same pin.
输入格式
If it is possible to rearrange the rows and columns to fix the harp, on the first line output n space-separated integers — the old numbers of rows now placed from top to bottom in the fixed harp. On the second line, output m space-separated integers — the old numbers of columns now placed from left to right in the fixed harp.
If it is impossible to rearrange the rows and columns to fix the harp, output "No solution" (without quotes).
输出格式
无
输入输出样例
输入#1
3 4 L T 1 3 L B 2 2 L B 3 3 T R 1 2 T B 2 1 T R 4 1 B R 4 3
输出#1
1 2 3 3 2 1 4
输入#2
3 3 L T 1 1 T R 3 1 R B 3 3 B L 1 3 L R 2 2 T B 2 2
输出#2
No solution