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
- Programmers
- GeeksForGeeks
- NRVO
- Frustum
- RootMotion
- winapi
- RVO
- 티스토리챌린지
- 팰린드롬 만들기
- softeer
- algorithm
- UnrealEngine4
- 언리얼엔진5
- C
- 오블완
- UE5
- 프로그래머스
- 2294
- baekjoon
- directx
- UnrealEngine5
- const
- 줄 세우기
- IFileDialog
- Unreal Engine5
- 1563
- C++
- DirectX11
- 백준
- DeferredRendering
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 16500번 :: 문자열 판별 본문
https://www.acmicpc.net/problem/16500
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
|
#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_set>
using namespace std;
string s;
int n;
bool dp[101] = { false }; // dp[i] == s의 0 ~ i-1 번째 인덱스까지, 주어진 단어들로 조합이 가능한가??
unordered_set<string> words;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> s >> n;
for (int i = 0; i < n; ++i)
{
string word;
cin >> word;
words.insert(word);
}
dp[0] = true; // 공백을 만들 수 있는가?
// -> 아무 단어도 선택안하면 만들 수 있다.
// -> 그렇기에 dp[0]에 true.
for (int i = 1; i <= s.size(); ++i) // s의 i-1번째 인덱스까지 단어들을 조합해서 만들 수 있는가?
{
for (int j = 0; j < i; ++j)
{
if (dp[j] && words.find(s.substr(j, i-j)) != words.end())
{
dp[i] = true;
}
}
}
cout << dp[s.size()];
}
|
cs |
일단 Bottom-Up 방식..
특정 문자열 word가 존재하는지의 여부만 알면 되기때문에 unordered_set을 활용한다.
dp[i]는 문자열 s의 i-1번째 인덱스까지, 주어진 단어들로 만들 수 있는지에 대한 여부이다.
i가 아니다. i-1이다.
dp[0]에는 먼저 true값을 넣는다. 이것은 주어진 단어들로 공백문자열을 만들 수 있는가? 에 대한 질문의 답변을 넣는 것이다. 만들 수 있기 때문에 true값을 넣은것이다. 어떻게? -> 단어들을 하나도 선택하지않으면 공백문자열이 된다.
이후 반복문을 돈다. 어떤 단어가 들어있는지 모르니, 전부 체크해줘야 한다.
예시로 하나 설명하자면, 문자열 "abcde" 가 주어졌다고 가정해보자.
abcde가 만들어지는지 체크하기위한 검사로, abcd 가 이전에 만들어질 수 있는지 체크해보고 이후 e가 단어들중에 있는지 찾으면 된다. (이건 검사들 중 하나일 뿐이다)
혹은 abc가 유효한 문자열인지 체크한 후, de가 단어들 사이에 있는지 찾는다.
혹은 ab가 유효한지 체크한 후, cde가 단어들 사이에 있는지 체크하면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1613번 :: 역사 (0) | 2024.10.23 |
---|---|
[Algorithm]Baekjoon 10159번 :: 저울 (0) | 2024.10.23 |
[Algorithm]Baekjoon 1344번 :: 축구 (2) | 2024.10.19 |
[Algorithm]Baekjoon 14863번 :: 서울에서 경산까지 (0) | 2024.10.19 |
[Algorithm]Baekjoon 15724번 : 주지수 (0) | 2024.10.17 |