码迷,mamicode.com
首页 > 其他好文 > 详细

「日常训练」Two Substrings(Codeforces Round 306 Div.2 A)

时间:2018-10-03 22:26:47      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:return   force   out   sub   mes   syn   space   水题   cout   

题意与分析

一道非常坑的水题。分析醒了补。

代码

#include <bits/stdc++.h>
#define MP make_pair
#define PB emplace_back
#define fi first
#define se second
#define ZERO(x) memset((x), 0, sizeof(x))
#define ALL(x) (x).begin(),(x).end()
#define rep(i, a, b) for (repType i = (a); i <= (b); ++i)
#define per(i, a, b) for (repType i = (a); i >= (b); --i)
#define QUICKIO                      ios::sync_with_stdio(false);     cin.tie(0);                      cout.tie(0);
using namespace std;
using ll=long long;
using repType=int;

int main()
{
    string a; cin>>a; int len=a.length();
    if(len<4) cout<<"NO"<<endl;
    else
    {
        vector<int> ab,ba;
        rep(i,0,len-2) 
        {
            if(a[i]==‘A‘ && a[i+1]==‘B‘) ab.PB(i);
            else if(a[i]==‘B‘ && a[i+1]==‘A‘) ba.PB(i);
        }
        bool ok=false;
        rep(i,0,int(ab.size())-1)
        {
            per(j,int(ba.size())-1,0)
            {
                if(ab[i]+1<len && ab[i]+1!=ba[j] && (ba[j]+1>len-1 || ba[j]+1!=ab[i])) { ok=true; break; } 
            }
            if(ok) break;
        }
        if(ok) cout<<"YES"<<endl; else cout<<"NO"<<endl;
    }
    return 0;
}

「日常训练」Two Substrings(Codeforces Round 306 Div.2 A)

标签:return   force   out   sub   mes   syn   space   水题   cout   

原文地址:https://www.cnblogs.com/samhx/p/cfr306d2a.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!