zoukankan      html  css  js  c++  java
  • 【HackerRank】Missing Numbers

    Numeros, The Artist, had two lists A and B, such that, B was a permutation of A. Numeros was very proud of these lists. Unfortunately, while transporting them from one exhibition to another, some numbers from List A got left out. Can you find out the numbers missing from A?

    Notes

    • If a number occurs multiple times in the lists, you must ensure that the frequency of that number in both the lists is the same. If that is not the case, then it is also a missing number.
    • You have to print all the missing numbers in ascending order.
    • Print each missing number once, even if it is missing multiple times.
    • The difference between maximum and minimum number in the list B is less than or equal to 100.

    Input Format 
    There will be four lines of input:

    n - the size of the first list 
    This is followed by n space separated integers that make up the first list. 
    m - the size of the second list 
    This is followed by m space separated integers that make up the second list.

    Output Format 
    Output the missing numbers in ascending order

    Constraints 
    1<= n,m <= 1000010 
    1 <= x <= 10000 , x ∈ B 
    Xmax - Xmin < 101


    题解:设置两个数组,因为x的范围在1~10000之间,只要开两个10001的数组分别记录A和B中元素的个数,然后比较两个数组就可以了。

    代码如下:

     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[] CountA = new int[10005];
     7         int[] CountB = new int[10005];
     8         
     9         int n = in.nextInt();
    10         int[] a = new int[n];
    11         for(int i = 0;i < n;i++){
    12             a[i]=in.nextInt();
    13             CountA[a[i]]++;
    14         }
    15         
    16         int m = in.nextInt();
    17         int[] b = new int[m];
    18         for(int i = 0;i < m;i++){
    19             b[i]=in.nextInt();
    20             CountB[b[i]]++;
    21         }
    22         
    23         for(int i = 1;i <= 10000;i++){
    24             if(CountB[i]>CountA[i] )
    25                 System.out.printf("%d ", i);
    26         }
    27         System.out.println();
    28         
    29         
    30         
    31     }
    32 }
  • 相关阅读:
    游戏中的View开发
    下载更新包,并且在任务栏提示进度.
    调用android非unbind的服务中的方法(不使用bindService启动的服务)
    判断android系统中Service是否在运行的方法
    如何从Activity中调用Service中的方法
    android官方文档---应用程序基础---服务的理解(app Component---services)
    怎么通过文件名的String,找到对应的资源ID
    疯狂Java之JDBC 笔记
    android应用将json数据打包在本地,进行读取的代码
    STL 堆的使用
  • 原文地址:https://www.cnblogs.com/sunshineatnoon/p/3914611.html
Copyright © 2011-2022 走看看