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;
    }
  • 相关阅读:
    windows下安装python,安装框架django。
    如何创建PostgreSQL数据库
    图像灰度化方法总结及其VC实现
    如何将真彩色图转换为各种灰度图
    Win8Metro(C#)数字图像处理--2.40二值图像轮廓提取
    C#GDI+图像处理
    C# 内存法图像处理
    C#调用GDI+1.1中的函数实现高斯模糊、USM锐化等经典效果。
    图像处理之简单数字水印
    解析C#彩色图像灰度化算法的实现代码详解
  • 原文地址:https://www.cnblogs.com/zhangchengc919/p/5368259.html
Copyright © 2011-2022 走看看