zoukankan      html  css  js  c++  java
  • codeforces 558B B. Amr and The Large Array(水题)

    题目链接:

    B. Amr and The Large Array

    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output
     

    Amr has got a large array of size n. Amr doesn't like large arrays so he intends to make it smaller.

    Amr doesn't care about anything in the array except the beauty of it. The beauty of the array is defined to be the maximum number of times that some number occurs in this array. He wants to choose the smallest subsegment of this array such that the beauty of it will be the same as the original array.

    Help Amr by choosing the smallest subsegment possible.

    Input

    The first line contains one number n (1 ≤ n ≤ 105), the size of the array.

    The second line contains n integers ai (1 ≤ ai ≤ 106), representing elements of the array.

    Output

    Output two integers l, r (1 ≤ l ≤ r ≤ n), the beginning and the end of the subsegment chosen respectively.

    If there are several possible answers you may output any of them.

    Examples
    input
    5
    1 1 2 2 1
    output
    1 5
    input
    5
    1 2 2 3 1
    output
    2 3
    input
    6
    1 2 2 1 1 2
    output
    1 5
    Note

    A subsegment B of an array A from l to r is an array of size r - l + 1 where Bi = Al + i - 1 for all 1 ≤ i ≤ r - l + 1

    题意:

    使数组的魅力值保持相同,但数组的长度尽量小;

    思路:

    用vector的大小来看是否对应魅力值的那个数,而vector保存了这个数的各个位置,可以得到长度,一半比较一边更新就好;

    AC代码:

    /*
    2014300227     558B - 9    GNU C++11    Accepted    61 ms    15728 KB
    */
    #include <bits/stdc++.h>
    using namespace std;
    const int N=1e5+4;
    typedef long long ll;
    const double PI=acos(-1.0);
    int n,a[N];
    vector<int>ve[10*N];
    int main()
    {
        scanf("%d",&n);
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
            ve[a[i]].push_back(i);
        }
        int ans=0,l=0,r=0;
        for(int i=1;i<=1e6;i++)
        {
            int g=ve[i].size();
            if(g){
            if(g>ve[ans].size())
            {
                int len=g;
                l=ve[i][0];
                r=ve[i][len-1];
                ans=i;
            }
            else if(g==ve[ans].size())
            {
                int s=g;
                if(ve[i][s-1]-ve[i][0]<r-l)
                {
                    l=ve[i][0];
                    r=ve[i][s-1];
                    ans=i;
                }
            }
            }
        }
        cout<<l<<" "<<r<<endl;
    
        return 0;
    }
  • 相关阅读:
    MySQL-简述
    APP测试-Solo Pi工具-性能测试
    APP测试-弱网测试
    iOS 认识runtime 中的三个指针 isa , IMP , SEL
    iOS 什么是函数式编程
    iOS 根据农历日期 获取当前的农历年份 即 干支纪年法算农历年
    iOS 当公司有人向你提问,你该如何应对?
    Mac 环境 下使用Charles 抓包Http/Https请求
    iOS iPhone X 适配启动图片
    iOS11 仿大标题 导航栏
  • 原文地址:https://www.cnblogs.com/zhangchengc919/p/5368259.html
Copyright © 2011-2022 走看看