두 번째 풀이입니다. 예전과는 어떻게 얼마나 달라졌는지 궁금해서 한번 더 풀어보았습니다.
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14QpAaAAwCFAYi
<풀이>
1. 글자판을 입력받는다.
2. 글자판에서 주어진 길이의 회문 개수를 출력한다.
<해법>
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
|
#include <iostream>
#include <string.h>
using namespace std;
int pLength;
char map[8][8];
int answer;
bool isPalindrome(string str) {
int start = 0;
int end = 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 < 8; i++) {
for (int j = 0; j < 8; j++) {
if (j + pLength <= 8) {
str = "";
for (int k = 0; k < pLength; k++) {
str += map[i][j + k];
}
if (isPalindrome(str)) answer++;
}
if (i + pLength <= 8) {
str = "";
for (int k = 0; k < pLength; k++) {
str += map[i + k][j];
}
if (isPalindrome(str)) answer++;
}
}
}
}
int main() {
int test_case;
int T;
T = 10;
for (test_case = 1; test_case <= T; test_case++) {
//초기화
pLength = 0;
memset(map, '0', sizeof(map));
answer = 0;
//입력
cin >> pLength;
for (int i = 0; i < 8; i++) {
for (int j = 0; j < 8; j++) {
cin >> map[i][j];
}
}
//해법
solution();
//출력
cout << "#" << test_case << " " << answer << "\n";
}
//종료
return 0;
}
|
문자열과 구현에 대해 알아볼 수 있는 문제였습니다.
'알고리즘 문제풀이 > SWEA' 카테고리의 다른 글
[C++] SWEA 1217 - 거듭 제곱 (0) | 2022.12.21 |
---|---|
[C++] SWEA 1216 - 회문2 (0) | 2022.12.15 |
[C++] SWEA 1213 - String (0) | 2022.12.15 |
[C++] SWEA 1953 - 탈주범 검거(2) (0) | 2022.12.15 |
[C++] SWEA 1949 - 등산로 조정 (0) | 2022.12.15 |