C. Cinema

题目连接:

http://www.codeforces.com/contest/670/problem/C

Description

Moscow is hosting a major international conference, which is attended by n scientists from different countries. Each of the scientists knows exactly one language. For convenience, we enumerate all languages of the world with integers from 1 to 109.

In the evening after the conference, all n scientists decided to go to the cinema. There are m movies in the cinema they came to. Each of the movies is characterized by two distinct numbers — the index of audio language and the index of subtitles language. The scientist, who came to the movie, will be very pleased if he knows the audio language of the movie, will be almost satisfied if he knows the language of subtitles and will be not satisfied if he does not know neither one nor the other (note that the audio language and the subtitles language for each movie are always different).

Scientists decided to go together to the same movie. You have to help them choose the movie, such that the number of very pleased scientists is maximum possible. If there are several such movies, select among them one that will maximize the number of almost satisfied scientists.

Input

The first line of the input contains a positive integer n (1 ≤ n ≤ 200 000) — the number of scientists.

The second line contains n positive integers a1, a2, ..., an (1 ≤ ai ≤ 109), where ai is the index of a language, which the i-th scientist knows.

The third line contains a positive integer m (1 ≤ m ≤ 200 000) — the number of movies in the cinema.

The fourth line contains m positive integers b1, b2, ..., bm (1 ≤ bj ≤ 109), where bj is the index of the audio language of the j-th movie.

The fifth line contains m positive integers c1, c2, ..., cm (1 ≤ cj ≤ 109), where cj is the index of subtitles language of the j-th movie.

It is guaranteed that audio languages and subtitles language are different for each movie, that is bj ≠ cj.

Output

Print the single integer — the index of a movie to which scientists should go. After viewing this movie the number of very pleased scientists should be maximum possible. If in the cinema there are several such movies, you need to choose among them one, after viewing which there will be the maximum possible number of almost satisfied scientists.

If there are several possible answers print any of them.

Sample Input

3

2 3 2

2

3 2

2 3

Sample Output

2

题意

每个电影有两种语言,一个主要语言,和一个次要语言

每一个教授知道一门语言

现在这些教授决定去看一场电影了,他们想选择一场教授们懂得的主要语言最多的,如果一样多,就次要尽量多的电影去看

但是必须选一场

问你是哪场?

题解:

用map记录一下教授的语言,然后直接for一遍每一个电影就好了

代码

#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e5+6;
map<int,int>H;
int ans1=0,ans2=0,ans3=1,n,m,x,a[maxn],b[maxn];
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)scanf("%d",&x),H[x]++;
scanf("%d",&m);
for(int i=1;i<=m;i++)scanf("%d",&a[i]);
for(int i=1;i<=m;i++)scanf("%d",&b[i]);
for(int i=1;i<=m;i++)
{
if(ans1<H[a[i]])
{
ans1=H[a[i]],ans2=H[b[i]],ans3=i;
}
else if(ans1==H[a[i]]&&ans2<H[b[i]])
{
ans1=H[a[i]],ans2=H[b[i]],ans3=i;
}
}
cout<<ans3<<endl;
}

最新文章

  1. [原] KVM 虚拟化原理探究(4)— 内存虚拟化
  2. Thrift的TJsonProtocol协议分析
  3. BZOJ 3289: Mato的文件管理
  4. C/ C++ 常见编程问题
  5. Git 暂存区
  6. 《图解密码技术》-chaper1-概述
  7. IOS--UISlider的使用方法
  8. 栈 &amp; 堆 |--&gt; 内存管理
  9. JAVAEE——SSH项目实战01:SVN介绍、安装和使用方法
  10. ajax请求发送和页面跳转的冲突
  11. Struts2获取Session的三种方式
  12. 源端控制的OpenFlow数据面
  13. Yii框架基础增删查改
  14. HDU - 3567
  15. 解决 django 博客归档 “Are time zone definitions for your database and pytz installed?”的错误
  16. String 字符串详解 / 常用API
  17. Bootstrap-CL:导航元素
  18. 天津Uber优步司机奖励政策(12月21日到12月27日)
  19. [转] Tomcat 禁用URL中的JSESSIONID
  20. Sqlite Datetime类型详解

热门文章

  1. 关于mysql的wait_timeout参数 设置不生效的问题【转】
  2. 002_Linux-Memory专题
  3. idea添加jdbc包
  4. idea心得
  5. Python3 出现&#39;ascii&#39; codec can&#39;t encode characters问题
  6. 读书笔记--C陷阱与缺陷(三)
  7. B树 B+树 红黑树
  8. 20165301 2017-2018-2《Java程序设计》课程总结
  9. 用django-cors-headers做跨域
  10. 推进&quot;五通一平&quot;:手淘技术&quot;三大容器 五大方案&quot;首次整体亮相 百川开放升级