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 | 31 |
Tags
- amba
- Zynq
- 정보처리기사
- hdl
- 정처기
- HDLBits
- java
- 리눅스
- 코딩테스트
- AMBA BUS
- Bus
- Backjoon
- 백준
- 자격증
- 실기
- verilog HDL
- Beakjoon
- axi
- Xilinx
- linux
- C++
- chip2chip
- baekjoon
- SQL
- UNIX
- verilog
- Vivado
- vitis
- FPGA
- boj
Archives
- Today
- Total
Hueestory
[1920] 수 찾기 (C++) 본문
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int N; cin >> N;
vector<int> A(N);
for (int i = 0; i < N; i++) cin >> A[i];
sort(A.begin(), A.end());
int M; cin >> M;
for (int i = 0; i < M; i++) {
bool find = false;
int tmp;
cin >> tmp;
int s = 0;
int e = A.size() - 1;
while (s <= e) {
int mid = (s + e) / 2;
if (A[mid] > tmp) e = mid - 1;
else if (A[mid] < tmp) s = mid + 1;
else {
find = true;
break;
}
}
if (find) cout << 1 << "\n";
else cout << 0 << "\n";
}
return 0;
}
1. 시간 제한이 1초, 자연수 N이 100,000개, 찾아야 하는 수가 100,000개 이므로 이중 for문을 사용하면 시간 초과
=> 이진 탐색을 사용한 O(NlogN)의 시간 복잡도로 문제를 풀어야 함
2. vector를 생성하여 M을 저장하는 방법이 아닌 정수형 tmp를 생성해 수를 임시로 저장하는 방식을 사용
endl을 사용하여 시간초과가 났던 문제
'PS(중단) > BOJ' 카테고리의 다른 글
[1300] K번째 수 (C++) (0) | 2024.05.13 |
---|---|
[2343] 기타 레슨 (C++) (0) | 2024.05.13 |
[1167] 트리의 지름 (C++) (0) | 2024.05.07 |
[2178] 미로 탐색 (C++) (0) | 2024.05.04 |
[1260] DFS와 BFS (C++) (0) | 2024.05.03 |
Comments