숫자 카드는 정수 하나가 적혀져 있는 카드이다. 상근이는 숫자 카드 N개를 가지고 있다. 정수 M개가 주어졌을 때, 이 수가 적혀있는 숫자 카드를 상근이가 몇 개 가지고 있는지 구하는 프로그램을 작성하시오.
첫째 줄에 상근이가 가지고 있는 숫자 카드의 개수 N(1 ≤ N ≤ 500,000)이가 주어진다. 둘째 줄에는 숫자 카드에 적혀있는 정수가 주어진다. 숫자 카드에 적혀있는 수는 -10,000,000보다 크거나 같고, 10,000,000보다 작거나 같다.
셋째 줄에는 M(1 ≤ M ≤ 500,000)이 주어진다. 넷째 줄에는 상근이가 몇 개 가지고 있는 숫자 카드인지 구해야 할 M개의 정수가 주어지며, 이 수는 공백으로 구분되어져 있다. 이수도 -10,000,000보다 크거나 같고, 10,000,000보다 작거나 같다.
첫째 줄에 입력으로 주어진 M개의 수에 대해서, 각 수가 적힌 숫자 카드를 상근이가 몇 개 가지고 있는지를 공백으로 구분해 출력한다.
10
6 3 2 10 10 10 -10 -10 7 3
8
10 9 -5 2 3 4 5 -10
3 0 0 1 2 0 0 2
이 문제는 전에 풀었던 숫자카드 문제에서 조금 심화된 문제로 저번과 같이 메모리와 시간을 많이 쓴 편이다.
import java.util.Scanner;
import java.util.Arrays;
public class Main {
static int[] arr;
static int[] count;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
arr = new int[N];
for(int i=0; i<N; i++) {
arr[i]=sc.nextInt();
}
Arrays.sort(arr);
count = new int[N];
int cnt;
int index=0;
while(true) {
if(index>=N-1)
break;
cnt=1;
for(int j=index+1; j<N; j++) {
if(arr[index]==arr[j])
cnt++;
else if(arr[index]<arr[j])
break;
}
for(int i=index; i<index+cnt; i++)
count[i]=cnt;
index+=cnt;
}
int M = sc.nextInt();
int[] result = new int[M];
for(int i=0; i<M; i++){
int target = sc.nextInt();
result[i]=binarySearch(target);
}
for(int i=0; i<M; i++) {
if(i==M-1)
System.out.println(result[i]);
else
System.out.print(result[i]+" ");
}
}
public static int binarySearch(int target) {
int left = 0;
int right = arr.length-1;
int cnt = 0;
while(left<=right) {
int mid = (left+right)/2;
if(target>arr[mid])
left=mid+1;
else if(target<arr[mid])
right=mid-1;
else {
return cnt+count[mid];
}
}
return cnt;
}
}