CF1578K.Kingdom of Islands
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The Kingdom of Islands consists of p islands. As the king, you rule over the whole kingdom, while each island is ruled over by one or several jarls under your rule. In total, there are n jarls under your jurisdiction.
Each island of the kingdom has its own strong traditions, so jarls that rule over the same island support each other and never have conflicts. The downsides of such strength are cultural conflicts between people inhabiting different islands. Thus, two jarls that rule over different islands are in conflict.
However, recent years brought a few changes to traditional relations between the jarls. To your knowledge, there are exactly k pairs of jarls such that relationships between two jarls in the pair are different from the traditional. That is, if two jarls of the pair you know rule over the same island, these jarls are in conflict. If they rule over different islands, then they overcome cultural disagreement and there is no conflict between them anymore.
As a true responsible king, you are worried about whether the kingdom is close to a major conflict. In order to estimate the current situation, you would like to find the largest possible group of jarls such that every two jarls in the group are in conflict.
输入格式
The first line of the input consists of two integers p and n ( 1≤p≤n≤105 ; 1≤p≤104 ).
The second line consists of n integers s1,s2,…,sn ( 1≤si≤p ). The integer si denotes that the i -th jarl rules over the island number si . It is guaranteed that each island is ruled by at least one jarl.
The third line consists of a single integer k ( 0≤k≤20 ).
Then k lines follow. The j -th of these lines consists of two distinct integers aj and bj ( 1≤aj<bj≤n ), denoting that the relation between the aj -th jarl and the bj -th jarl differs from traditional. It is guaranteed that no pair of jarls appears twice in this list.
输出格式
In the first line print a single integer q between 1 and n — the largest possible number of jarls in a pairwise conflicting group. In the second line print q distinct integers between 1 and n — the numbers of jarls in the group. The numbers of jarls can be printed in any order.
输入输出样例
输入#1
4 4 1 2 3 4 1 2 3
输出#1
3 1 4 2
输入#2
2 4 1 1 2 2 1 3 4
输出#2
3 2 4 3
输入#3
4 8 1 1 1 2 2 3 4 4 7 1 2 2 3 3 6 4 5 5 7 2 7 3 8
输出#3
6 8 6 5 4 2 1
说明/提示
The conflict graph for the last sample testcase is given below. Each circle represents an island.