結果

問題 No.2240 WAC
ユーザー 乾麺乾麺
提出日時 2024-05-15 16:11:25
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 895 bytes
コンパイル時間 3,468 ms
コンパイル使用メモリ 277,084 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-12-20 10:21:15
合計ジャッジ時間 46,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,656 KB
testcase_01 AC 2 ms
11,620 KB
testcase_02 AC 3 ms
11,532 KB
testcase_03 AC 2 ms
11,492 KB
testcase_04 AC 2 ms
11,620 KB
testcase_05 AC 2 ms
11,524 KB
testcase_06 AC 2 ms
11,544 KB
testcase_07 AC 2 ms
11,580 KB
testcase_08 AC 2 ms
11,732 KB
testcase_09 AC 2 ms
11,880 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 263 ms
6,816 KB
testcase_14 AC 40 ms
6,820 KB
testcase_15 AC 1,937 ms
6,816 KB
testcase_16 TLE -
testcase_17 AC 927 ms
6,820 KB
testcase_18 AC 77 ms
6,820 KB
testcase_19 AC 647 ms
6,816 KB
testcase_20 AC 1,133 ms
6,820 KB
testcase_21 AC 617 ms
6,816 KB
testcase_22 TLE -
testcase_23 AC 990 ms
6,816 KB
testcase_24 AC 770 ms
6,816 KB
testcase_25 AC 746 ms
6,820 KB
testcase_26 AC 245 ms
6,816 KB
testcase_27 AC 74 ms
6,816 KB
testcase_28 AC 432 ms
6,816 KB
testcase_29 AC 58 ms
6,820 KB
testcase_30 AC 941 ms
6,816 KB
testcase_31 AC 1,899 ms
6,816 KB
testcase_32 AC 66 ms
6,816 KB
testcase_33 AC 748 ms
6,816 KB
testcase_34 AC 1,335 ms
6,816 KB
testcase_35 AC 14 ms
6,816 KB
testcase_36 AC 787 ms
6,816 KB
testcase_37 AC 1,548 ms
6,820 KB
testcase_38 AC 284 ms
6,816 KB
testcase_39 TLE -
testcase_40 AC 567 ms
6,816 KB
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <atcoder/dsu>
#include <atcoder/segtree>
using namespace atcoder;
using namespace std;
typedef long long ll;
#define rep(i,a,b) for(int i=a;i<b;i++)
using vi = vector<int>; 
using vvi = vector<vi>; 
using li =vector<ll>;
using lli=vector<li>;
using si =vector<char>;
using ssi =vector<si>;
const long long INF = 1e18;
const long long MOD=1e9+7;
//for (auto [key, val] : mp)
int main() { int n,m;string s;cin>>n>>m>>s;string wa,ac;int cnt=0;
for(int i=2*n+2*m;i>=0;i--){if(s[i]=='A'&&cnt<n){wa="A"+wa;cnt++;}else if(s[i]=='W')wa="W"+wa;}
cnt=0;
rep(i,0,2*n+2*m){if(s[i]=='A'&&cnt<m){ac=ac+"A";cnt++;}else if(s[i]=='C')ac=ac+"C";}
//cout<<wa<<" "<<ac<<endl;
cnt=0;
rep(i,0,2*n){if(wa[i]=='W')cnt++;else cnt--;if(cnt<0){cout<<"No";return 0;}}
cnt=0;
rep(i,0,2*m){if(ac[i]=='A')cnt++;else cnt--;if(cnt<0){cout<<"No";return 0;}}
cout<<"Yes";
}
0