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
- 너비 우선 탐색
- 플로이드
- 다이나믹 프로그래밍
- 삼성테스트
- IOS
- 알고리즘
- 플로이드 와샬
- 일본 여행
- dfs
- 후쿠오카 캐널시티
- queue
- 큐
- 삼성 SW 테스트
- 완전탐색
- DP
- 후쿠오카 여행경비
- BOJ
- 삼성시험
- 하카타역
- 후쿠오카 4박 5일
- deque
- 백준
- BFS
- 미로찾기
- 시뮬레이션
- 완전 탐색
- 후쿠오카 요도바시 하카타
- 깊이 우선 탐색
- 후쿠오카
- brute force
Archives
- Today
- Total
맛있는감귤
BOJ : 2276 암기왕 본문
문제 : https://www.acmicpc.net/problem/2776
github : https://github.com/JEONG-SEUNGWOOK/BOJ/blob/master/2276.cpp
기초적인 이진탐색 문제.
테스트 케이스도 하나가 아니기 때문에 반복문을 이용하면 TLE.
algorithm 라이브러리에 binary_search 함수가 있기 때문에 사용하면 더 편하게 구현 가능하다.
#include <cstdio> #include <algorithm> using namespace std; bool bs(int size,int a[],int m){ int low=0, high=size-1, mid; while(low<=high){ mid = low+(high-low)/2; if(a[mid]<m) low=mid+1; else if(a[mid]>m)high=mid-1; else return true; } return false; } int main(){ int T; scanf("%d",&T); while(T--){ int N,M; int a[1000001]; scanf("%d",&N); for(int i=0;i<N;i++) scanf("%d",&a[i]); sort(a,a+N); scanf("%d",&M); while(M--){ int t; scanf("%d",&t); printf("%d\n",bs(N,a,t)); } } }
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
BOJ : 1389 케빈 베이컨의 6단계 법칙 (0) | 2017.01.15 |
---|---|
BOJ : 1158 조세퍼스 문제 (0) | 2017.01.15 |
BOJ : 1149 RGB거리 (0) | 2017.01.12 |
BOJ : 1094 막대기 (0) | 2017.01.12 |
BOJ : 1085 직사각형에서 탈출 (0) | 2017.01.12 |