Educational Codeforces Round 35 (Rated for Div. 2) A

A. Nearest Minimums
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are given an array of n integer numbers a0, a1, …, an - 1. Find the distance between two closest (nearest) minimums in it. It is guaranteed that in the array a minimum occurs at least two times.

Input
The first line contains positive integer n (2 ≤ n ≤ 105) — size of the given array. The second line contains n integers a0, a1, …, an - 1 (1 ≤ ai ≤ 109) — elements of the array. It is guaranteed that in the array a minimum occurs at least two times.

Output
Print the only number — distance between two nearest minimums in the array.

Examples
input
2
3 3
output
1
input
3
5 6 5
output
2
input
9
2 1 3 5 4 1 2 3 1
output
3

找出最小的数,相离最小距离。
最小的数,不是最小的两个数,理解不要失误!
解题思路,两个位置移动找一个距离的最小值

#include<bits/stdc++.h>
using namespace std;
const int inf=0x3f3f3f3f;
int a[100005];
int main()
{
    int n;
    scanf("%d",&n);
    int minn=inf,ans=inf,k;
    for(int i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
        if(a[i]<minn)
        {
            minn=a[i];
            k=i;
        }
    }
    //printf("%d\n",k);
    int m=k;
    for(int i=k+1;i<n;i++)
    {
        if(a[i]==minn)
        {
            ans=min(ans,abs(k-i));
            k=i;
        }
    }
    printf("%d\n",ans);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值