일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 트리
- MiniHeap
- 알고리즘
- 그래프
- 기초
- git hub
- type 함수
- 배열
- 자료구조
- format 메서드
- NQueen
- IT
- 백준
- 문법
- UNIX
- 동적 계획
- sys.stdin.readline()
- 우분투
- 분할 정복
- 이진 탐색
- 스택
- 정렬
- 탐색
- 순차 탐색
- 파이썬
- 그리디
- 유닉스
- 자기개발
- 재귀 함수
- Git
Archives
- Today
- Total
코딩고치
[백준][브루트 포스] 리모컨 본문
1. 문제 주소
https://www.acmicpc.net/problem/1107
2. 문제
3. 소스코드
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
40
41
42
43
44
45
46
47
48
|
#include <iostream>
using namespace std;
bool broken_button[10];
int main() {
int n;
cin >> n;
int m;
cin >> m;
for (int i = 0; i < m; i++) {
int button;
cin >> button;
broken_button[button] = true; //고장난 버튼 true
}
int count = n - 100;
if (n < 100)
count = -count; //+ 또는 -버튼 하나로만 채널 이동을 할 때
for (int i = 0; i <= 1000000; i++) {
int channel = i;
int button_count = 0;
if (channel == 0 && broken_button[0] == false)
button_count = 1;
while (channel > 0) {
if (broken_button[channel % 10] == false) { // 1의 자리부터 확인하면서 버튼이 고장나 있는지 아닌지 확인
button_count += 1; // 고장 안났으면 count를 +1 해줌
channel /= 10; //그 다음 자릿수로 가기 위해 10으로 나눠줌
}
else {
button_count = 0; //버튼이 고장나 있을 경우 현재 채널로 이동하지 못함.
break;
}
}
if (button_count > 0) {
int partial_count = i - n; //현재 채널에서 n번 채널까지 + 또는 -로 이동
if (i < n)
partial_count = -partial_count;
if (count > partial_count + button_count)
count = partial_count + button_count; //최솟값 찾기
}
}
cout << count << '\n';
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'백준 알고리즘 기초 > 브루트 포스' 카테고리의 다른 글
[백준][브루트 포스] 날짜 계산 (0) | 2020.04.03 |
---|---|
[백준][브루트 포스] 사탕 게임 (0) | 2020.04.02 |
[백준][브루트 포스] 일곱난쟁이 (0) | 2020.04.01 |
Comments