CF1578K.Kingdom of Islands

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Kingdom of Islands consists of pp 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 nn 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 kk 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 pp and nn ( 1pn1051 \le p \le n \le 10^5 ; 1p1041 \le p \le 10^4 ).

The second line consists of nn integers s1,s2,,sns_1, s_2, \ldots, s_n ( 1sip1 \le s_i \le p ). The integer sis_i denotes that the ii -th jarl rules over the island number sis_i . It is guaranteed that each island is ruled by at least one jarl.

The third line consists of a single integer kk ( 0k200 \le k \le 20 ).

Then kk lines follow. The jj -th of these lines consists of two distinct integers aja_j and bjb_j ( 1aj<bjn1 \le a_j < b_j \le n ), denoting that the relation between the aja_j -th jarl and the bjb_j -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 qq between 11 and nn — the largest possible number of jarls in a pairwise conflicting group. In the second line print qq distinct integers between 11 and nn — 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.

首页