반응형
알고리즘 종류
완전탐색
사고 과정
2가지 경우가 있습니다.
1. 100에서 + 또는 -을 눌러서 채널 N에 도착하는 경우
2. 채널 N에 근접한 채널에 도착해서 + 또는 -을 누르는 경우
저는 채널 N에 근접한 채널을 찾기 위한 방법을 생각해서 코딩을 했지만 보증된 방법이 아니었습니다. 그래서 완전탐색으로 모든 채널에서 N에 + 또는 -로 이동한 횟수를 찾아서 최솟값을 찾으면 됩니다.
구현(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
|
#include <iostream>
#include <vector>
#include <cmath>
#include <string>
using namespace std;
int n, m;
int broken[10];
int ans;
bool check(int x){
string str = to_string(x);
for(int i=0; i<str.length(); i++){
if(broken[str[i] - '0'] == 1) return false;
}
return true;
}
int main(void){
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
ans = abs(n-100);
int x;
for(int i=0; i<m; i++){
cin >> x;
broken[x] = 1;
}
for(int i=0; i<1000001; i++){
if(check(i)){
string str = to_string(i);
int len = abs(n-i) + str.length();
ans = min(ans, len);
}
}
cout << ans << endl;
}
|
cs |
시행착오
반응형
'코딩 공부 > 백준' 카테고리의 다른 글
[백준][C++] 20057 마법사 상어와 토네이도 (0) | 2021.05.25 |
---|---|
[백준][C++] 20056 마법사 상어와 파이어볼 (0) | 2021.05.25 |
[백준][C++] 1976 여행 가자 (0) | 2021.04.22 |
[백준][C++] 17298 오큰수 (0) | 2021.04.22 |
[백준][C++] 1043 거짓말 (0) | 2021.04.21 |