CF1121A.Technogoblet of Fire
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Everybody knows that the m -coder Tournament will happen soon. m schools participate in the tournament, and only one student from each school participates.
There are a total of n students in those schools. Before the tournament, all students put their names and the names of their schools into the Technogoblet of Fire. After that, Technogoblet selects the strongest student from each school to participate.
Arkady is a hacker who wants to have k Chosen Ones selected by the Technogoblet. Unfortunately, not all of them are the strongest in their schools, but Arkady can make up some new school names and replace some names from Technogoblet with those. You can't use each made-up name more than once. In that case, Technogoblet would select the strongest student in those made-up schools too.
You know the power of each student and schools they study in. Calculate the minimal number of schools Arkady has to make up so that k Chosen Ones would be selected by the Technogoblet.
输入格式
The first line contains three integers n , m and k ( 1≤n≤100 , 1≤m,k≤n ) — the total number of students, the number of schools and the number of the Chosen Ones.
The second line contains n different integers p1,p2,…,pn ( 1≤pi≤n ), where pi denotes the power of i -th student. The bigger the power, the stronger the student.
The third line contains n integers s1,s2,…,sn ( 1≤si≤m ), where si denotes the school the i -th student goes to. At least one student studies in each of the schools.
The fourth line contains k different integers c1,c2,…,ck ( 1≤ci≤n ) — the id's of the Chosen Ones.
输出格式
Output a single integer — the minimal number of schools to be made up by Arkady so that k Chosen Ones would be selected by the Technogoblet.
输入输出样例
输入#1
7 3 1 1 5 3 4 6 7 2 1 3 1 2 1 2 3 3
输出#1
1
输入#2
8 4 4 1 2 3 4 5 6 7 8 4 3 2 1 4 3 2 1 3 4 5 6
输出#2
2
说明/提示
In the first example there's just a single Chosen One with id 3 . His power is equal to 3 , but in the same school 1 , there's a student with id 5 and power 6 , and that means inaction would not lead to the latter being chosen. If we, however, make up a new school (let its id be 4 ) for the Chosen One, Technogoblet would select students with ids 2 (strongest in 3 ), 5 (strongest in 1 ), 6 (strongest in 2 ) and 3 (strongest in 4 ).
In the second example, you can change the school of student 3 to the made-up 5 and the school of student 4 to the made-up 6 . It will cause the Technogoblet to choose students 8 , 7 , 6 , 5 , 3 and 4 .