Recent Posts
Notice
No Rules Rules
재귀의 귀재 (feat. 백준, 25501번) 본문
728x90
반응형
재귀의 귀재
https://www.acmicpc.net/problem/25501
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int T;
string S;
void solution(register int s, register int l){
if(s >= l)
cout << "1 " << s + 1 << "\n";
else if(S.at(s) == S.at(l))
solution(s + 1, l - 1);
else
cout << "0 " << s + 1 << "\n";
}
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
cin >> T;
for(register int t = 0; t < T; ++t){
cin >> S;
solution(0, S.size() - 1);
}
return 0;
}
// *&)*@*
- 문제에 주어진 예문대로 구현하면 되는 문제입니다.
- 재귀에 대한 개념과 팰린드롬이 무엇인지 알 수 있습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
꼬마 정민 (feat. 백준, 11382번) (0) | 2022.09.14 |
---|---|
큐 (feat. 백준, 10845번) (0) | 2022.09.14 |
맥주 마시면서 걸어가기 (feat. 백준, 9205번) (0) | 2022.09.14 |
빙산 (feat. 백준, 2573번) (0) | 2022.09.14 |
안전 영역 (feat. 백준, 2468번) (0) | 2022.09.14 |
Comments