Cinema(离散化)(Codeforces670C)

C. Cinema
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
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.

Examples
inputCopy
3
2 3 2
2
3 2
2 3
outputCopy
2
inputCopy
6
6 3 1 1 3 7
5
1 2 3 4 5
2 3 4 5 1
outputCopy
1
Note
In the first sample, scientists must go to the movie with the index 2, as in such case the 1-th and the 3-rd scientists will be very pleased and the 2-nd scientist will be almost satisfied.

In the second test case scientists can go either to the movie with the index 1 or the index 3. After viewing any of these movies exactly two scientists will be very pleased and all the others will be not satisfied.

题目地址:http://codeforces.com/contest/670/problem/C
解题思想:
虽然语言的范围在1e9内,但是这m部电影与n个人对多涉及2m+n中语言。我们把所有电影的人涉及的语眼放进一个数组,排序并离散化,用一个1~2m+n的整数代替每种语言。此时我们就可以用数组统计会上述每种语言的数量,从而选择满足题目要求的电影。时间复杂度为O((n+m)log(n+m))

代码:

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
int a[200005],b[200005],c[2000005],s[600005],num[200005];
int k;
int query(int x){
    return lower_bound(s,s+k+1,x)-s;
}
struct node{
    int x,y,id;
}cc[200005];
bool cmp(const node&a,const node&b){
    if(a.x==b.x)
        return a.y>b.y;
    return a.x>b.x;
}
int main()
{
    int n;
    cin>>n;
    for(int i=1;i<=n;i++){
        scanf("%d",a+i);
        s[i]=a[i];
    }
    int m;
    cin>>m;
    for(int i=1;i<=m;i++){
        scanf("%d",b+i);
        s[i+n]=b[i];
    }
    for(int i=1;i<=m;i++){
        scanf("%d",c+i);
        s[i+m+n]=c[i];
    }
    sort(s+1,s+1+n+2*m);
    k=unique(s+1,s+1+n+2*m)-s-1;

    for(int i=1;i<=n;i++){
        num[query(a[i])]++;
    }
    for(int i=1;i<=m;i++){
        cc[i].x=num[query(b[i])];
        cc[i].y=num[query(c[i])];
        cc[i].id=i;

    }
    sort(cc+1,cc+m+1,cmp);
    cout<<cc[1].id;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

轩辕青山

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值