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
- 백준
- 프로그래머스
- GeeksForGeeks
- Frustum
- softeer
- Unreal Engine5
- RootMotion
- 2294
- UnrealEngine5
- winapi
- 줄 세우기
- 언리얼엔진5
- 1563
- baekjoon
- DeferredRendering
- 티스토리챌린지
- RVO
- DirectX11
- NRVO
- Programmers
- 오블완
- UnrealEngine4
- const
- algorithm
- directx
- 팰린드롬 만들기
- UE5
- IFileDialog
- C
- C++
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1062번 : 가르침 본문
https://www.acmicpc.net/problem/1062
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
|
int n, k;
int chance = 0;
vector<string> targetWords;
vector<char> newAlphabets;
bool m[26] = { false };
int answer = 0;
int maxDepth = 0;
void DFS(int index, int depth)
{
if (depth == maxDepth)
{
int answerCount = 0;
for (int i = 0; i < targetWords.size(); ++i)
{
string word = targetWords[i];
bool check = true;
for (int j = 0; j < word.size(); ++j)
{
if (!m[word[j] - 'a'])
{
check = false;
break;
}
}
if (check) ++answerCount;
}
answer = max(answer, answerCount);
return;
}
for (int i = index + 1; i < newAlphabets.size(); ++i)
{
m[newAlphabets[i] - 'a'] = true;
DFS(i,depth+1);
m[newAlphabets[i] - 'a'] = false;
}
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> k;
m['a' - 'a'] = true;
m['n' - 'a'] = true;
m['t' - 'a'] = true;
m['i' - 'a'] = true;
m['c' - 'a'] = true;
chance = k - 5;
bool tm[26];
memcpy(tm, m, 26);
int tempAnswer = 0;
for (int i = 0; i < n; ++i)
{
string s;
cin >> s;
string targetWord = s.substr(4, s.size() - 8);
string temp = "";
bool ttm[26];
memcpy(ttm, m, 26);
for (int k = 0; k < targetWord.size(); ++k)
{
if (!ttm[targetWord[k] - 'a']) // a,n,t,c,i 중 하나가 아니라면
{
temp += targetWord[k]; // 내가 만들어야 할 문자후보
if (!tm[targetWord[k] - 'a'])
{
newAlphabets.push_back(targetWord[k]);
tm[targetWord[k] - 'a'] = true;
}
}
}
if (temp == "") ++tempAnswer;
else targetWords.push_back(temp);
}
if (chance < 0)
{
cout << 0;
return 0;
}
maxDepth = min((int)newAlphabets.size(), chance);
for (int i = 0; i < newAlphabets.size(); ++i)
{
m[newAlphabets[i] - 'a'] = true;
DFS(i,1);
m[newAlphabets[i] - 'a'] = false;
}
cout << tempAnswer + answer;
}
|
cs |
여타 골드4문제에 비해선 좀 더 어려운 문제.
특히 딱 필요한만큼의 로직을 수행하기위해 전처리하는 과정이 필요하다.
그리고 알파벳 사용여부는 map대신 아스키코드값을 인덱스로 이용한 bool배열로 하는게 좋다.
map으로 해도 통과는 한다만, 굳이 한번의 접근으로 값을 알 수 있는 bool배열을 두고 해쉬맵을 사용할 필요는 없기 때문이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 12908번 :: 텔레포트 3 (2) | 2023.10.11 |
---|---|
[Algorithm]Baekjoon 29792번 :: 규칙적인 보스돌이 (1) | 2023.10.11 |
[Algorithm] Baekjoon 18111번 : 마인크래프트 (1) | 2023.10.10 |
[Algorithm] Baekjoon 14890번 : 경사로 (0) | 2023.09.29 |
[Algorithm] Baekjoon 14889번 : 스타트와 링크 (0) | 2023.09.28 |