문제 출처 : https://www.acmicpc.net/problem/10816
이번 문제는 숫자 카드와 달리 갯수를 파악해야 한다.
그래서 stl에 있는 upper_bound와 lower_bound를 사용하였다.
이것들은 정렬 후에 사용 할 수 있으며 그 값을 가지고 있는 인덱스를 가져 올 수 있다.
아래는 해당 문제에 관한 소스이다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include<stdio.h>
#include<algorithm>
#pragma warning(disable:4996)
using namespace std;
int arr[500001];
int main()
{
int N;
scanf("%d", &N);
for (int i = 0; i < N; i++)
scanf("%d", &arr[i]);
sort(arr, arr + N);
int M;
int value;
scanf("%d", &M);
for (int i = 0; i < M; i++)
{
scanf("%d", &value);
printf("%d ", upper_bound(arr, arr + N, value) - lower_bound(arr, arr + N, value));
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘' 카테고리의 다른 글
백준 5430번 문제 ( AC ) (0) | 2019.12.25 |
---|---|
백준 1406번 문제 ( 에디터 ) (0) | 2019.12.25 |
백준 11650번 문제 ( 좌표 정렬하기 ) (0) | 2019.12.25 |
백준 10815번 문제 ( 숫자 카드 ) (0) | 2019.12.24 |
백준 10989번 문제 ( 수 정렬하기 3 ) (0) | 2019.12.24 |