306701: CF1239D. Catowice City
Memory Limit:512 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Catowice City
题意翻译
有$\rm{N}$个人和$\rm{N}$只猫,每个人都认识一些猫(其中包括自己的猫)。 要求选出$\rm j$名裁判(人)和$\rm p$只选手(猫),使得$\rm j+p=N$,且选出的人和猫都互相不认识。 如果不存在这样的方案输出一行$\rm NO$。 如果存在则第一行输出$\rm YES$,第二行输出两个数字分别代表裁判和选手的数量,第三行输出所有裁判的编号,第四行输出所有选手的编号。题目描述
In the Catowice city next weekend the cat contest will be held. However, the jury members and the contestants haven't been selected yet. There are $ n $ residents and $ n $ cats in the Catowice, and each resident has exactly one cat living in his house. The residents and cats are numbered with integers from $ 1 $ to $ n $ , where the $ i $ -th cat is living in the house of $ i $ -th resident. Each Catowice resident is in friendship with several cats, including the one living in his house. In order to conduct a contest, at least one jury member is needed and at least one cat contestant is needed. Of course, every jury member should know none of the contestants. For the contest to be successful, it's also needed that the number of jury members plus the number of contestants is equal to $ n $ . Please help Catowice residents to select the jury and the contestants for the upcoming competition, or determine that it's impossible to do.输入输出格式
输入格式
The first line contains an integer $ t $ ( $ 1 \le t \le 100\,000 $ ), the number of test cases. Then description of $ t $ test cases follow, where each description is as follows: The first line contains integers $ n $ and $ m $ ( $ 1 \le n \le m \le 10^6 $ ), the number of Catowice residents and the number of friendship pairs between residents and cats. Each of the next $ m $ lines contains integers $ a_i $ and $ b_i $ ( $ 1 \le a_i, b_i \le n $ ), denoting that $ a_i $ -th resident is acquaintances with $ b_i $ -th cat. It's guaranteed that each pair of some resident and some cat is listed at most once. It's guaranteed, that for every $ i $ there exists a pair between $ i $ -th resident and $ i $ -th cat. Different test cases are separated with an empty line. It's guaranteed, that the sum of $ n $ over all test cases is at most $ 10^6 $ and that the sum of $ m $ over all test cases is at most $ 10^6 $ .
输出格式
For every test case print: - "No", if it's impossible to select the jury and contestants. - Otherwise print "Yes".In the second line print two integers $ j $ and $ p $ ( $ 1 \le j $ , $ 1 \le p $ , $ j + p = n $ ) — the number of jury members and the number of contest participants. In the third line print $ j $ distinct integers from $ 1 $ to $ n $ , the indices of the residents forming a jury. In the fourth line print $ p $ distinct integers from $ 1 $ to $ n $ , the indices of the cats, which will participate in the contest. In case there are several correct answers, print any of them.
输入输出样例
输入样例 #1
4
3 4
1 1
2 2
3 3
1 3
3 7
1 1
1 2
1 3
2 2
3 1
3 2
3 3
1 1
1 1
2 4
1 1
1 2
2 1
2 2
输出样例 #1
Yes
2 1
1 3
2
Yes
1 2
2
1 3
No
No