結果

問題 No.2240 WAC
ユーザー zezerozezero
提出日時 2023-03-10 22:30:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,122 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 172,084 KB
実行使用メモリ 13,120 KB
最終ジャッジ日時 2024-09-18 04:40:48
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 78 ms
13,120 KB
testcase_11 AC 40 ms
8,256 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 41 ms
8,252 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 11 ms
5,376 KB
testcase_19 AC 15 ms
5,888 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 17 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 34 ms
6,204 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 6 ms
5,376 KB
testcase_31 AC 9 ms
5,376 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 6 ms
5,376 KB
testcase_34 AC 7 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 35 ms
6,080 KB
testcase_37 AC 9 ms
5,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 6 ms
5,376 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cstring>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)
const int INF = 1e9;

int main(){
  int n,m;
  cin >> n >> m;
  string s;
  cin >> s;
  int len = n+m+n+m;
  set<int> st;
  bool yes = true;
  for (int i = len-1; i >= 0;i--){
    //cout << i;
    //cout << " set:" << endl;
    //for (auto e:st){
    //  cout << e  << " "; 
    //}
    //cout << endl;
    if (s[i] == 'A'){
      st.insert(i);
    }
    else if (s[i] == 'W'){
      if (st.empty()){
        yes = false;
        break;
      }
      else{
        auto itr = st.rbegin();
        st.erase((*itr));
      }
    }
  }
  for (int i = 0; i < len;i++){
    if (s[i] == 'C'){
      if (st.empty()){
        yes = false;
        break;
      }
      else{
        st.erase(st.begin());
      }
    }
  }
  if (yes){
    cout << "Yes\n";
  }
  else{
    cout << "No\n";
  }
 


  return 0;
}
0