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
- DirectX11
- 오블완
- GeeksForGeeks
- 1563
- Programmers
- directx
- IFileDialog
- 언리얼엔진5
- 팰린드롬 만들기
- softeer
- 티스토리챌린지
- UnrealEngine4
- C++
- Frustum
- C
- algorithm
- 줄 세우기
- winapi
- Unreal Engine5
- UnrealEngine5
- 프로그래머스
- 백준
- const
- 2294
- RootMotion
- UE5
- baekjoon
- DeferredRendering
- RVO
- NRVO
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 3687번 :: 성냥개비 본문
https://www.acmicpc.net/problem/3687
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
bool compare(string& s1, string& s2) // s1이 더 작아야 true 리턴.
{
if (s1.size() < s2.size()) return true;
else if (s2.size() < s1.size()) return false;
for (int i = 0; i < s1.size(); ++i)
{
if (s1[i] - '0' < s2[i] - '0') return true;
else if (s2[i] - '0' < s1[i] - '0') return false;
}
}
const string maxString = "99999999999999999999999999999999999999999999999999";
const string minString = "";
int t, n;
int costs[10] = { 6,2,5,5,4,5,6,3,7,6 };
string minDP[101];
string maxDP[101];
string MinDFS(int leftCount)
{
if (leftCount == 0) return "";
string& result = minDP[leftCount];
if (result != "#") return result;
result = maxString;
for (int i = 0; i <= 9; ++i)
{
if (i == 0 && leftCount == n) continue;
int cost = costs[i];
if (cost > leftCount) continue;
string temp = "";
temp += i + '0';
temp += MinDFS(leftCount - cost);
if (compare(temp, result))
{
result = temp;
}
}
return result;
}
string MaxDFS(int leftCount)
{
if (leftCount == 0) return "";
string& result = maxDP[leftCount];
if (result != "#") return result;
result = minString;
for (int i = 0; i <= 9; ++i)
{
if (i == 0 && leftCount == n) continue;
int cost = costs[i];
if (cost > leftCount) continue;
string temp = "";
temp += i + '0';
temp += MaxDFS(leftCount - cost);
if (compare(result, temp))
{
result = temp;
}
}
return result;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
vector<string> minResult;
vector<string> maxResult;
cin >> t;
while (t--)
{
cin >> n;
for (int i = 0; i <= n; ++i)
{
minDP[i] = maxDP[i] = "#";
}
minResult.push_back(MinDFS(n));
maxResult.push_back(MaxDFS(n));
}
for (int i = 0; i < minResult.size(); ++i)
{
printf("%s %s\n", minResult[i].c_str(), maxResult[i].c_str());
}
}
|
cs |
주어진 성냥개비수로 만들 수 있는 최소의 수와 최대의 수를 구하는 문제이다.
맨 앞에 0이 오면 안된다는 조건을 지키며 무난히 풀었는데, 다른사람 풀이보니까 이게 규칙이 있었다.
성냥개비수가 짝수개면 자리수가 무조건 큰게최고이기 때문에 1로 도배를 하는게 제일 큰수라던가...
이런 규칙을 아는것도 물론 좋겠지만, 실전 코딩테스트에서 이런 규칙이 쉽게 생각날 리 없고, 그냥 문제에서 주어진 조건 그대로 Top-Down 방식의 풀이가 무난히 생각나는게 중요하기 때문에, 그냥 넘어가려고 한다.
참고로 이 문제같은 경우, 자리수가 최대 50개까지 늘어날 수 있기때문에 그냥 정수형(int든 long long이든)으로 값을 담으려면 안되고, string으로 전부 처리해줘야 한다. 이것때문에 문제레벨이 좀 높은거같기도 하고, 코드가 좀 더 길어지긴했다.
맨 앞에 0이오면 안된다는 조건을 처리하는 코드는 79번째 라인이다. 현재 성냥개비수가 처음 성냥개비수와 같다면, 즉 현재의 탐색이 맨첫탐색이라면 숫자 0을 건너뛴다는 표현의 코드이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2643번 :: 색종이 올려 놓기 (0) | 2024.05.23 |
---|---|
[Algorithm]Baekjoon 2662번 :: 기업투자 (1) | 2024.05.23 |
[Algorithm]Baekjoon 1695번 :: 팰린드롬 만들기 (0) | 2024.05.23 |
[Algorithm]Baekjoon 2410번 :: 2의 멱수의 합 (0) | 2024.05.23 |
[Algorithm] Baekjoon 1135번 : 뉴스 전하기 (0) | 2024.05.23 |