【HackerRank】Closest Numbers

Sorting is often useful as the first step in many different tasks. The most common task is to make finding things easier, but there are other uses also.

Challenge 
Given a list of unsorted numbers, can you find the numbers that have the smallest absolute difference between them? If there are multiple pairs, find them all.

Input Format 
There will be two lines of input:

  • n - the size of the list
  • array - the n numbers of the list

Output Format 
Output the pairs of numbers with the smallest difference. If there are multiple pairs, output all of them in ascending order, all on the same line (consecutively) with just a single space between each pair of numbers. If there's a number which lies in two pair, print it two times (see sample case #3 for explanation).

Constraints 
10 <= n <= 200000 
-(107) <= x <= (107), where x ∈ array 
array[i] != array[j], 0 <= ij < N, and i != j


 

水题:维护一个ArrayList和记录当前最小距离的变量miniDist,每当i和i+1两个数的距离和miniDist相等时,把i放到ArrayList里面;当两个数距离小于miniDist时,把ArrayList清空,i放进去,并更新miniDist;最后根据ArrayList输出答案。

代码如下:

 1 import java.util.*;
 2 
 3 public class Solution {
 4     public static void main(String[] args) {
 5         Scanner in = new Scanner(System.in);
 6         int n = in.nextInt();
 7         int[] ar = new int[n];
 8         for(int i = 0;i < n;i++)
 9             ar[i]= in.nextInt();
10         
11         Arrays.sort(ar);
12         ArrayList<Integer> index = new ArrayList<Integer>();
13         int miniDis = Integer.MAX_VALUE;
14         for(int i = 0;i < n-1;i++){
15             if(ar[i+1]-ar[i] < miniDis){
16                 index.clear();
17                 index.add(i);
18                 miniDis = ar[i+1]-ar[i];
19             }
20             else if(ar[i+1]-ar[i]==miniDis)
21                 index.add(i);
22         }
23         for(int i:index){
24             System.out.printf("%d %d ", ar[i],ar[i+1]);
25         }
26         System.out.println();
27         
28     }
29 }

 

转载于:https://www.cnblogs.com/sunshineatnoon/p/3914478.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值