반응형
문제
숫자 카드는 정수 하나가 적혀져 있는 카드이다. 상근이는 숫자 카드 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개의 수에 대해서, 각 수가 적힌 숫자 카드를 상근이가 몇 개 가지고 있는지를 공백으로 구분해 출력한다.
풀이
-오름차순 정렬
-이진 탐색
-Lowerbound
-Upperbound
/*10816 숫자카드2*/
#include <iostream>
#include <algorithm>
using namespace std;
#define MAXN ((int)5e5+10)
int N;
int A[MAXN];
int M;
int B[MAXN];
int Temp[MAXN];
void InputData() {
cin >> N;
for(int i=0; i<N; i++) {
cin >> A[i];
}
cin >> M;
for(int i=0; i<M; i++) {
cin >> B[i];
}
}
int BinarySearchLower(int s, int e, int d){
int m, sol = -1;
while( s <= e) {
m = (s+e)/2;
if( A[m] == d){
sol = m;
e = m -1;
}
else if (A[m] > d) e = m -1;
else s = m+1;
}
return sol;
}
int BinarySearchUpper(int s, int e, int d){
int m, sol = -1;
while( s <= e) {
m = (s+e) /2;
if( A[m] == d){
sol = m;
s = m +1;
}
else if (A[m] > d) e = m -1;
else s = m + 1;
}
return sol;
}
void Solve(){
sort(A,A+N);
for(int i=0; i<M; i++) {
int lower = BinarySearchLower(0, N-1, B[i] );
if( lower != -1 ){
int upper = BinarySearchUpper(0, N-1, B[i] );
cout << upper - lower + 1 << ' ';
}else{
cout << 0 << ' ';
}
}
}
int main() {
InputData();
Solve();
return 0;
}
/*10816 숫자카드2*/
반응형
'Algorithm > 이분탐색' 카테고리의 다른 글
[c++][algorithm][baekjoon]12015번 가장 긴 증가하는 부분 수열2 (0) | 2021.12.09 |
---|---|
[c++][algorithm][baekjoon]1300번 K번째 수 (0) | 2021.12.09 |
[c++][algorithm][baekjoon]2110번 공유기 설치 (0) | 2021.12.09 |
[c++][algorithm][baekjoon]2805 나무자르기 (0) | 2021.12.09 |
[c++][algorithm][baekjoon]1920 수 찾기 (0) | 2021.07.06 |