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
- 프로그래머스
- 팰린드롬 만들기
- 백준
- UnrealEngine5
- Programmers
- directx
- winapi
- 2294
- C++
- C
- algorithm
- Frustum
- 티스토리챌린지
- baekjoon
- DeferredRendering
- softeer
- RVO
- NRVO
- RootMotion
- UnrealEngine4
- IFileDialog
- 오블완
- const
- GeeksForGeeks
- DirectX11
- Unreal Engine5
- 언리얼엔진5
- UE5
- 1563
- 줄 세우기
Archives
- Today
- Total
Game Develop
[Algorithm] Programmers :: 가장 긴 팰린드롬 본문
https://school.programmers.co.kr/learn/courses/30/lessons/12904
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
|
int solution(string s)
{
int answer = 1;
int size = s.size();
bool isBreak = false;
for (int i = 0; i < size; ++i)
{
for (int j = size - 1; j >= i+1; --j)
{
int firstIndex = i;
int secondIndex = j;
int standSize = secondIndex - firstIndex + 1; // 검사구간 크기.
int count = 0;
if (standSize <= answer)
{
break;
}
while (1) // 처음 끝 쌍비교.
{
if (s[firstIndex + count] == s[secondIndex - count])
{
++count;
if (count == standSize / 2)
{
answer = max(answer, standSize);
break;
}
}
else // 하나라도 안맞으면 바로 탈출.
{
break;
}
}
if (count == standSize / 2)
{
answer = max(answer, standSize);
}
}
}
return answer;
}
|
cs |
팰린드롬이란 뒤집어도 똑같은 문자열을 의미한다.
딱 필요한만큼만 비교를 해야 효율성테스트를 통과한다.
처음부터 완전탐색처럼 하되, 이후 남은 검사를 할 필요가 없는 경우 중단해줘야 한다.
위 코드는 말로 설명하는것보다는 그냥 예제 하나 넣어놓고 한줄씩 수행시키는게 제일 이해가 빠를거라 생각한다.
'Algorithm > Programmers' 카테고리의 다른 글
[Algorithm] Programmers :: 등굣길 (0) | 2023.03.22 |
---|---|
[Algorithm] Programmers :: 몸짱 트레이너 라이언의 고민 (0) | 2023.03.22 |
[Algorithm] Programmers :: 보행자 천국 (0) | 2023.03.21 |
[Algorithm] Programmers :: 인사고과 (0) | 2023.02.07 |
[Algorithm] Programmers :: 두 큐 합 같게 만들기 (1) | 2023.02.02 |