본문 바로가기

알고리즘/백준

[BOJ 1107] 리모컨

0 ~ 500000까지의 채널을 체크하면서, 유효한지를 체크하면 된다.

 

 

 

문자열로 처리하면 시간이 늦어지므로 int로 채널들을 처리하도록 다시 구성했다.

 

 

 

처음에는, 가능성이 있는 채널만 찾아서 체크할려고 했지만 쉽지 않아서 완전 탐색을 했다.

 

 

 

 

해설코드(C++).

 

 

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
49
#include <iostream>
#include <cstring>
#include <cmath>
 
using namespace std;
 
int N, M, tmp;
int answer;
int arr[6];
bool chk[10];
 
void func(int idx){
    if(idx == 6)
        return;
    
    for(int i = 0; i < 10; i++){ 
        if(chk[i]){
            arr[idx] = i;
            int mul = pow(10, idx);
            int sum = 0;
            
            for(int j = 0; j <= idx; j++){
                sum += (arr[j] * mul);    
                mul /= 10;
            }
            
            answer = min(answer, abs(N - sum) + idx + 1);
            func(idx + 1);
        }
    }
    
    return;
}
 
int main() {
    cin >> N;
    cin >> M;
    memset(chk, truesizeof(chk));
    for(int i = 1; i <= M; i++){
        cin >> tmp;
        chk[tmp] = false;
    }
    
    answer = abs(N - 100);
    func(0);
    
    cout << answer << endl;
    return 0;
}

'알고리즘 > 백준' 카테고리의 다른 글

[BOJ 2602] 돌다리 건너기  (0) 2020.05.28
[BOJ 11399] ATM  (0) 2020.05.25
[BOJ 1182] 부분수열의 합(비트마스크, 재귀함수, C++)  (0) 2020.05.24
[BOJ 2688] 줄어들지 않아  (0) 2020.05.22
[BOJ 2309] 일곱 난쟁이  (0) 2020.05.19