티스토리 뷰
반응형
⊙ 문제
⊙ 입력
⊙ 출력
⊙ 예제 입출력
⊙ 알고리즘 분류
- 정렬
- 이분 탐색
⊙ 문제 접근 과정
코드는 tooo1.tistory.com/122과 거의 똑같다.
문제 접근 과정도 위와 똑같으니 쿨하게 생략.
⊙ 문제 풀이
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int binarySearch(vector<int>&arr,int target, int start, int end) {
while(start <= end) {
int mid = (start + end) /2;
if(arr[mid]==target)
return mid;
else if (arr[mid]>target)
end = mid-1;
else
start = mid+1;
}
return -1;
}
int n,m;
vector<int> arr;
vector<int> s;
int main() {
cin >> n;
for (auto i = 0; i < n; i++) {
int x;
cin >> x;
arr.push_back(x);
}
sort(arr.begin(),arr.end());
cin >> m;
for (auto i =0; i< m; i++) {
int x;
cin >> x;
s.push_back(x);
}
for(auto i =0; i<m;i++) {
int result = binarySearch(arr,s[i],0,n-1);
if(result!=-1) {
cout << "1 ";
}else cout << "0 ";
}
}
⊙ 결과
⊙ 마무리
NONE
좋아요는 로그인하지 않아도 누를 수 있습니다!
728x90
반응형
'백준 온라인 저지 [BOJ] > C++ [CPP]' 카테고리의 다른 글
[백준(BOJ)] 10816번 : 숫자 카드 2 - C++[CPP] (0) | 2021.05.10 |
---|---|
[백준(BOJ)] 1789번 : 수들의 합 - C++[CPP] (0) | 2021.05.10 |
[백준(BOJ)] 2805번 : 나무 자르기 - C++[CPP] (0) | 2021.05.10 |
[백준(BOJ)] 1920번 : 수 찾기 - C++[CPP] (0) | 2021.05.09 |
[백준(BOJ)] 2631번 : 줄세우기 - C++[CPP] (0) | 2021.05.08 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 운영체제
- 정렬
- 풀이
- JS
- 답
- 프로그래머스
- 자바스크립트
- 정리
- 백준
- 우종정
- 정답
- 문자열
- BFS
- CPP
- 해답
- OS
- 파이썬
- 연습문제
- 쉽게배우는자바프로그래밍
- 구현
- 쉽게배우는
- 쉽게 배우는 자바 프로그래밍
- 자바
- C++
- Web
- Python
- py
- java
- 알고리즘
- 그리디
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함