Recent Posts
Notice
No Rules Rules
오렌지먹은지오랜지 (feat. 백준, 27962번) 본문
728x90
반응형
오렌지먹은지오랜지
https://www.acmicpc.net/problem/27962
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
string str, front, rear;
cin >> N >> str;
for(int idx = 1, chk; idx <= N; ++idx){
chk = 0;
front.assign(str.begin(), str.begin() + idx);
rear.assign(str.end() - idx, str.end());
for(int i = 0; i < idx; ++i)
if(front.at(i) != rear.at(i))
++chk;
if(chk == 1){
cout << "YES";
exit(0);
}
}
cout << "NO";
return 0;
}
// *&)*@*
반응형
처음에는 팰린드롬으로 구하는 문제인줄 알았습니다만 착각이었습니다.
단순히 처음 문자열과 뒤의 문자열을 하나씩 늘려가며 "비타민 문자열"인지를 검사하면 됩니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
MST 게임 (feat. 백준, 16202번) (0) | 2023.04.18 |
---|---|
합금 주화 (feat. 백준, 27963번) (0) | 2023.04.18 |
사격 내기 (feat. 백준, 27960번) (0) | 2023.04.18 |
장난감 조립 (feat. 백준, 2637번) (0) | 2023.04.17 |
고양이는 많을수록 좋다 (feat. 백준, 27961번) (0) | 2023.04.17 |
Comments