티스토리 뷰
레고 조각의 길이를 저장해서 정렬한 후 이분탐색으로 풀 수 있는 문제다
0부터 확인해서 구멍을 막을 길이가 정확하개 된다면
=> mid값을 찾는다면 출력하면 된다
처음에 set으로 모두 저장하고 풀려고했는데 시간초과가 났다
아무래도 값이 커서 저장하고 찾는데 시간이 오래걸리나보다
그래도 5초나줬는데..!!
집착하지말고 이분탐색으로 풀자!
소스코드
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
32
33
34
35
36
37
38
39
|
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int t,n;
vector<int> vt;
bool bs(int pos,int val){
int l = pos+1;
int r = vt.size()-1;
while(l<=r){
int mid = (l+r)/2;
if(vt[mid]==val) return true;
if(vt[mid]>val) r = mid-1;
else l = mid+1;
}
return false;
}
int main(){
//freopen("input.txt","r",stdin);
while(scanf("%d",&t) != -1){
bool check = false;
scanf(" %d",&n);
for(int i=0;i<n;i++){
int a; scanf(" %d",&a);
vt.push_back(a);
}
sort(vt.begin(),vt.end());
for(int i=0;i<n;i++){
int c = t-vt[i];
if(bs(i,c)){
printf("yes %d %d\n",vt[i],c);
check=true; break;
}
}
if(!check) puts("danger");
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
'알고리즘 > BOJ' 카테고리의 다른 글
[백준] 17267 상남자 (0) | 2019.08.27 |
---|---|
[백준] 1987 알파벳 (0) | 2019.08.27 |
[백준] 3020 개똥벌레 (0) | 2019.08.27 |
[백준] 2632 피자판매 (0) | 2019.08.27 |
[백준] 2206 벽 부수고 이동하기 (0) | 2019.08.27 |
댓글