zoukankan      html  css  js  c++  java
  • Codeforces 670C Cinema

    C. Cinema
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard 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
    Input
    3
    2 3 2
    2
    3 2
    2 3
    Output
    2
    Input
    6
    6 3 1 1 3 7
    5
    1 2 3 4 5
    2 3 4 5 1
    Output
    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.

    【题解】

    C题怎么这个难度。。。

    排序离散化桶统计水过

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cstdlib>
     5 #include <algorithm>
     6 
     7 inline void read(int &x)
     8 {
     9     x = 0;char ch = getchar(),c = ch;
    10     while(ch < '0' || ch > '9')c = ch, ch = getchar();
    11     while(ch <= '9' && ch >= '0')x = x * 10 + ch - '0', ch = getchar();
    12     if(c == '-')x = -x;
    13 }
    14 
    15 const int MAXN = 400000 + 10;
    16 const int MAXM = 400000 + 10;
    17 
    18 int n,m,numm[MAXN + (MAXM << 1)],num[MAXN + (MAXM << 1)],cnt[MAXN + (MAXM << 1)], tong[MAXN + (MAXM << 1)], ans, ma1, ma2;
    19 
    20 int cmp(int a, int b)
    21 {
    22     return numm[a] < numm[b];
    23 }
    24 
    25 int main()
    26 {
    27     read(n);
    28     for(register int i = 1;i <= n;++ i) read(numm[i]), cnt[i] = i;
    29     read(m);
    30     int nn = n + m,nnn = nn + m;
    31     for(register int i = n + 1;i <= nnn;++ i) read(numm[i]), cnt[i] = i;
    32     std::sort(cnt + 1, cnt + 1 + nnn, cmp);
    33     for(register int i = 1, j = 0;i <= nnn;++ i) 
    34         if(numm[cnt[i]] == numm[cnt[i - 1]])
    35             num[cnt[i]] = j;
    36         else num[cnt[i]] = ++j;
    37     for(register int i = 1;i <= n;++ i) ++ tong[num[i]];
    38     for(register int i = n + 1;i <= nn;++ i) 
    39         if(ma1 < tong[num[i]]) ma1 = tong[num[i]], ma2 = tong[num[i + m]],ans = i - n;
    40         else if(ma1 == tong[num[i]]) if(ma2 < tong[num[i + m]]) ma1 = tong[num[i]], ma2 = tong[num[i + m]], ans = i - n;
    41     if(!ans) printf("1");
    42     else printf("%d", ans);
    43     return 0;
    44 }
    Codeforces670C
  • 相关阅读:
    初学Java——数组
    Ubuntu下将软件添加到快捷启动栏的问题
    初学Java——方法
    初学Java——选择
    初学Java——常用类之Math笔记
    初学Java——基本程序设计笔记(2)
    初学Java——基本程序设计笔记(1)
    关于IE浏览器里修改元素style属性的问题
    2.22,2.24工作进度
    2.21工作进度
  • 原文地址:https://www.cnblogs.com/huibixiaoxing/p/7295161.html
Copyright © 2011-2022 走看看