Recent Posts
Notice
No Rules Rules
팰린드롬 소떡소떡 (feat. 백준, 25630번) 본문
728x90
반응형
팰린드롬 소떡소떡
https://www.acmicpc.net/problem/25630
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int solution(register int s, register int e, string& str, register int cnt){
if(s >= e)
return cnt;
if(str.at(s) == str.at(e))
return solution(s + 1, e - 1, str, cnt);
return solution(s + 1, e - 1, str, cnt + 1);
}
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
string str;
cin >> N >> str;
cout << solution(0, N - 1, str, 0);
return 0;
}
// *&)*@*
팰린드롬이 성립하지 않는 인덱스의 개수를 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
젓가락 게임 (feat. 백준, 25642번) (0) | 2022.09.27 |
---|---|
햄버거 만들기 (feat. 백준, 25628번) (0) | 2022.09.27 |
Z (feat. 백준, 1074번) (0) | 2022.09.27 |
연결 요소의 개수 (feat. 백준, 11724번) (0) | 2022.09.26 |
오늘 날짜 (feat. 백준, 10699번) (0) | 2022.09.26 |
Comments