Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래머스
- 1563
- RVO
- 오블완
- 줄 세우기
- UnrealEngine4
- baekjoon
- 팰린드롬 만들기
- 티스토리챌린지
- winapi
- Unreal Engine5
- DeferredRendering
- DirectX11
- 2294
- RootMotion
- C++
- Programmers
- IFileDialog
- UE5
- C
- Frustum
- algorithm
- 백준
- NRVO
- 언리얼엔진5
- softeer
- directx
- UnrealEngine5
- const
- GeeksForGeeks
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1107번 : 리모컨 본문
https://www.acmicpc.net/problem/1107
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
using namespace std;
vector<int> cNum;
int minCount = 10000000;
struct Node
{
string s;
};
int BFS(int targetNum)
{
int answer = 1000000000;
queue<Node> q;
q.push({""});
while (!q.empty())
{
Node curNode = q.front();
q.pop();
if (curNode.s.size() > 0)
{
int curNum = stoi(curNode.s);
int temp = curNode.s.size() + abs(targetNum - curNum);
answer = min(answer, temp);
if (curNode.s.size() >= 6)
{
break;
}
}
for (int i = 0; i < cNum.size(); i++)
{
string temp = curNode.s;
temp += cNum[i] + '0';
if (temp.size() > 6) continue;
q.push({ temp });
}
}
return answer;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
string target; // 목표채널
int m = 0;
int temp = 0;
map<int, bool> icm;
int start = 100;
cin >> target >> m;
if (m == 0) // 고장난 버튼이 없을경우
{
cout << min(abs(100 - stoi(target)), (int)target.size());
return 0;
}
for (int i = 0; i < m; i++)
{
cin >> temp;
icm[temp] = true;
}
for (int i = 0; i <= 9; i++)
{
if (!icm[i])
cNum.push_back(i);
}
cout << min(BFS(stoi(target)), abs(stoi(target) - start));
return 0;
}
|
cs |
BFS로 해서 통과는 했는데, 성능이 매우 안좋다. 불필요한 노드가 너무 많이 만들어지는듯하다.
나중에 다시 DFS쪽으로 풀어봐야겠다.. 풀어야할 문제가 너무 많아서 조금 미뤄둔다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 1992번 : 쿼드트리 (0) | 2022.10.19 |
---|---|
[Algorithm] Baekjoon 1389번 : 케빈 베이컨의 6단계 법칙 (0) | 2022.10.19 |
[Algorithm] Baekjoon 1003번 : 피보나치 함수 (0) | 2022.10.18 |
[Algorithm] Baekjoon 1600번 : 말이 되고픈 원숭이 (0) | 2022.10.18 |
[Algorithm] Baekjoon 10971번 : 외판원 순회 2 (1) | 2022.10.14 |