No Rules Rules

팰린드롬 소떡소떡 (feat. 백준, 25630번) 본문

생활/코테

팰린드롬 소떡소떡 (feat. 백준, 25630번)

개발하는 완두콩 2022. 9. 27. 12:19
728x90
반응형

팰린드롬 소떡소떡
https://www.acmicpc.net/problem/25630

 

25630번: 팰린드롬 소떡소떡

소떡소떡은 기다란 꼬치에 소세지와 떡을 끼운 음식이다. 편의상 소떡소떡을 알파벳 s와 t로만 구성된 길이 $N$의 문자열로 생각하자. 알파벳 s는 소세지를, t는 떡을 의미한다. 위 그림은 길이가

www.acmicpc.net

 

반응형

 

// 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
반응형
Comments