https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14Rq5aABUCFAYi&categoryId=AV14Rq5aABUCFAYi&categoryType=CODE&problemTitle=1216&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=&pageSize=10&pageIndex=1 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

<풀이>

1. 글자판을 입력받는다.

2. 해당 글자판에서 만들 수 있는 회문 중, 가장 긴 회문을 찾고 그 길이를 출력한다.

 

<해법>

1. 회문인지 판별하는 방법

=> https://algosu.tistory.com/124 회문1 문제 풀이입니다. 이 링크와 코드의 isPalindrome함수를 참조해주시면 됩니다.

 

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
#include <iostream>
#include <string.h>
#include <algorithm>
 
using namespace std;
 
int trash;
char map[100][100];
int answer;
 
bool isPalindrome(string str) {
    int start = 0end = str.length() - 1;
    for (int i = 0; i < str.length() / 2; i++) {
        if (str[start + i] != str[end - i]) return false;
    }
    return true;
}
 
void solution() {
    string str = "";
    for (int i = 0; i < 100; i++) {
        for (int j = 0; j < 100; j++) {
            str = "";
            for (int k = 0; k < 100; k++) {
                if (j + k > 100break;
                str += map[i][j + k];
                if (isPalindrome(str)) {
                    answer = max(answer, k + 1);
                }
            }
            
            str = "";
            for (int k = 0; k < 100; k++) {
                if (i + k > 100break;
                str += map[i + k][j];
                if (isPalindrome(str)) {
                    answer = max(answer, k + 1);
                }
            }
        }
    }
}
 
int main() {
    int test_case;
    int T;
 
    T = 10;
 
    for (test_case = 1; test_case <= T; test_case++) {
 
        //초기화
        trash = 0;
        memset(map, '0'sizeof(map));
        answer = 0;
 
        //입력
        cin >> trash;
        for (int i = 0; i < 100; i++) {
            string str = "";
            cin >> str;
            for (int j = 0; j < 100; j++) {
                map[i][j] = str[j];
            }
        }
 
        //해법
        solution();
 
        //출력
        cout << "#" << test_case << " " << answer << "\n";
    }
 
    //종료
    return 0;
}

 

문자열과 구현에 대해 알아볼 수 있는 문제였습니다.

'알고리즘 문제풀이 > SWEA' 카테고리의 다른 글

[C++] SWEA 2117 - 홈 방범 서비스(2)  (1) 2022.12.21
[C++] SWEA 1217 - 거듭 제곱  (0) 2022.12.21
[C++] SWEA 1215 - 회문1(2)  (0) 2022.12.15
[C++] SWEA 1213 - String  (0) 2022.12.15
[C++] SWEA 1953 - 탈주범 검거(2)  (0) 2022.12.15

+ Recent posts