911A. Nearest Minimums(暴力+思维)

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
Copy
2
3 3
Output
1
Input
Copy
3
5 6 5
Output
2
Input
Copy
9
2 1 3 5 4 1 2 3 1
Output
3

题意:在所给数组里找到两个最小数字的最小距离;

思路:时间2秒,可以放心暴力,先找到最小值,再求最小距离

#include<bits/stdc++.h>
#define Inf 0x3f3f3f3f
using namespace std;
const int N = 100005;
int main(){
	int n,arr[N];
	scanf("%d",&n);
	int mint=Inf,index=0;
	for(int i=0;i<n;i++){
		scanf("%d",&arr[i]);
		if(arr[i]<mint){
			mint=arr[i];//最小值 
			index=i; //最小值第一次出现的位置 
		}
	}
	int l=n,per=index;
	for(int i=index+1;i<n;i++){
		if(arr[i]==mint){
			l=min(l,i-per); //求最小距离 
			per=i;
		}
	} 
	printf("%d\n",l);  
	return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值