1107번: 리모컨
접근 방법
완전탐색으로 모든 경우를 확인합니다. 다만 다른 채널을 경유해서 도달하는 경우, 해당 채널이 500000 이상으로 넘어갈 수 있다는 점을 고려해야합니다.
코드
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 <bits/stdc++.h>
#define endl '\\n'
using namespace std;
#define SUBMIT
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
#ifndef SUBMIT
(void)!freopen("input.txt", "r", stdin);
cout << "# From the test case" << endl;
#endif
int target; cin >> target;
int n; cin >> n;
char c;
string disabled;
for(int i = 0; i < n; ++i) {
cin >> c; disabled.push_back(c);
}
int answer = abs(target - 100);
for(int i = 0; i < 1000000; ++i) {
bool is_possible = true;
for(int j = 0; j < disabled.size(); ++j) {
if(to_string(i).find(disabled[j]) != string::npos) {
is_possible = false;
break;
}
}
if(!is_possible)
continue;
answer = min(answer, abs(i - target) + (int)to_string(i).size());
}
cout << answer << endl;
return 0;
}
|