Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- TCP/IP
- BOJ
- 제프리리처
- FIFO paging
- Spring
- Operating System.
- 스프링 입문
- redis
- 토마토
- OS
- 에러핸들링
- Window-Via-c/c++
- C++
- 열혈 tcp/ip 프로그래밍
- C#
- inflearn
- 윤성우 저자
- 2475번
- 스프링 핵심 원리
- Four Squares
- HTTP
- 10026번
- Operating System
- 김영한
- 운영체제
- 우아한 테크 세미나
- 열혈 TCP/IP 소켓 프로그래밍
- n타일링2
- 이펙티브코틀린
- 우아한레디스
Archives
- Today
- Total
나의 브을로오그으
[c++] 10816번 : 숫자 카드2 본문
https://www.acmicpc.net/problem/10816
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int N, M, card[500000] = { 0, };
pair<int, int> counter[500000];
int findCardNumber(int num, int last)
{
int low = 0;
int high = last;
int mid = 0;
int cnt = 0;
while (low <= high)
{
mid = low + (high - low) / 2;
if (num < counter[mid].first)
{
high = mid - 1;
}
else if (num > counter[mid].first)
{
low = mid + 1;
}
else
{
cnt = counter[mid].second;
break;
}
}
return cnt;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> N;
for (int i = 0; i < N; ++i)
{
cin >> card[i];
}
sort(card, card + N);
bool bFlag = false;
int cardIndex = 0;
int index = 0;
while (index < N)
{
if (bFlag == false)
{
bFlag = true;
counter[cardIndex].first = card[index];
counter[cardIndex].second = 1;
++index;
}
else
{
if (counter[cardIndex].first == card[index])
{
++counter[cardIndex].second;
++index;
}
else
{
++cardIndex;
bFlag = false;
}
}
}
cin >> M;
int num = 0;
for (int i = 0; i < M; ++i)
{
cin >> num;
cout << findCardNumber(num, cardIndex) << ' ';
}
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 10845번 : 큐 (0) | 2022.05.10 |
---|---|
[c++] 10828번 : 스택 (0) | 2022.05.08 |
[c++] 10814번 : 나이순 정렬 (0) | 2022.05.05 |
[c++] 10773번 : 제로 (0) | 2022.05.05 |
[c++] 10250번 : ACM 호텔 (0) | 2022.05.04 |