結果

問題 No.2240 WAC
ユーザー karinohitokarinohito
提出日時 2024-09-14 00:07:15
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 201,156 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 00:07:19
合計ジャッジ時間 4,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;



int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N,M;
    cin>>N>>M;
    string S,T,U;
    cin>>S;
    for(auto s:S){
        if(s=='W')T.push_back(s);
        else if(s=='A'&&M==0)T.push_back(s);
        else if(s=='A'){
            U.push_back(s);
            M--;
        }
        else U.push_back(s);
    }
    int k=0;
    for(auto t:T){
        if(t=='W')k++;
        else if(k==0){
            cout<<"No"<<endl;
            return 0;
        }
        else k--;
    }
    for(auto t:U){
        if(t=='A')k++;
        else if(k==0){
            cout<<"No"<<endl;
            return 0;
        }
        else k--;
    }
    cout<<"Yes"<<endl;
    
}
0