結果

問題 No.2240 WAC
ユーザー Shell-WataruShell-Wataru
提出日時 2023-03-10 21:53:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 107,088 KB
実行使用メモリ 6,976 KB
最終ジャッジ日時 2024-09-18 04:08:50
合計ジャッジ時間 2,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <deque>
#include <queue>
#include <set>
#include <map>
#include <limits>
#include <cmath>
#include <iomanip>
#include <functional>
#include <random>
#include <set>
using namespace std;
using ll = long long;

int main()
{
    // 整数の入力
    ll N,M;
    cin >> N >> M;
    string S;
    cin >> S;
    deque<ll> W;
    deque<ll> A;
    deque<ll> C;
    for(int i = 0;i < S.size();i++){
        if (S[i] == 'W'){
            W.push_back(i);
        }else if (S[i] == 'A'){
            A.push_back(i);
        }else{
            C.push_back(i);
        }
    }
    while(!W.empty()){
        if (W.back() < A.back()){
            W.pop_back();
            A.pop_back();
        }else{
            cout << "No" << endl;
            return 0;
        }
    }
    while(!C.empty()){
        if (A.front() < C.front()){
            C.pop_front();
            A.pop_front();
        }else{
            cout << "No" << endl;
            return 0;
        }
    }
    cout << "Yes" << endl;
    return 0;
}
0