• 【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 }
  • 相关阅读:
    DNS域名解析中A、AAAA、CNAME、MX、NS、TXT、SRV、SOA、PTR各项记录的作用
    HTTP数据包
    渗透——网络基础
    渗透——linux基础
    渗透——http协议基础
    渗透——CMS基础
    渗透测试流程
    渗透专用术语
    CodeFoeces GYM 101466A Gaby And Addition (字典树)
    关于Windows10内存随时间不断升高问题
  • 原文地址:https://www.cnblogs.com/sunshineatnoon/p/3914478.html
Copyright © 2020-2023  润新知