Codeforces Round #306 (Div. 2)——A——Two Substrings
2444 단어 codeforces
Input
The only line of input contains a string s of length between 1 and 105 consisting of uppercase Latin letters.
Output
Print "YES"(without the quotes), if string s contains two non-overlapping substrings "AB"and "BA", and "NO"otherwise.
Sample test(s)
input
ABA
output
NO
input
BACFAB
output
YES
input
AXBYBXA
output
NO
Note
In the first sample test, despite the fact that there are substrings "AB"and "BA", their occurrences overlap, so the answer is "NO".
In the second sample test there are the following occurrences of the substrings: BACFAB.
In the third sample test there is no substring "AB"nor substring "BA".
지능이 눌리다.hack 당했어, 거꾸로 판단만 하면 돼.
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int main()
{
char a[100110];
while(~scanf("%s",&a)){
int n = strlen(a);
int t1 ,t2 ;
t1 = t2 = 0;
int i = 0;
while(i < n){
if(a[i] == 'A' && a[i+1] == 'B'&&t1 == 0){
t1++;
i++;}
else if(a[i] == 'B' && a[i+1] == 'A'&&t2 == 0){
t2++;
i++;
}
i++;
}
if(t1 > 0 && t2 > 0){
printf("YES
");
continue;
}
i = n-1;
t1 = t2 = 0;
while(i >= 0){
if(a[i] == 'A' && a[i+1] == 'B'&& t1 == 0){
t1++;
i--;
}
else if(a[i] == 'B' && a[i+1] == 'A' && t2 == 0){
t2++;
i--;
}
i--;
}
if(t1 > 0 && t2 > 0)
printf("YES
");
else printf("NO
");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.