結果

問題 No.2240 WAC
ユーザー hikariri
提出日時 2023-03-27 17:59:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,699 bytes
コンパイル時間 3,446 ms
コンパイル使用メモリ 230,644 KB
実行使用メモリ 10,176 KB
最終ジャッジ日時 2024-09-19 13:29:36
合計ジャッジ時間 5,759 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 37 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <bits/stdc++.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
#endif
typedef long long ll;
typedef pair<int,int> pii; typedef pair<ll,ll> pll;
const int INF = 1e9; const long long LINF = 1e18;
const int MOD = 998244353; const int MOD1 = 1e9+7;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(x) x.begin(), x.end()
template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;}
template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;}
void yorn(bool ans){cout << (ans?"Yes":"No") << endl; return;}
// size_t
int main(){
int n,m; cin >> n >> m;
string s; cin >> s;
int l = (n+m)*2;
vector<int> w(l),c(l),a1(l),a2(l);
if(s.at(0)=='C'||s.back()=='W'){cout << "No" << endl; return 0;}
if(s.at(0)=='A') a1.at(0) = 1;
if(s.back()=='A') a2.at(0) = 1;
for(int i=1;i<l;i++){
if(s.at(i)=='C') c.at(i)++;
c.at(i) += c.at(i-1);
if(s.at(i) =='A') a1.at(i)++;
a1.at(i) += a1.at(i-1);
}
for(int i=l-2;i>=0;i--){
if(s.at(i)=='W') w.at(i)++;
w.at(i) += w.at(i+1);
if(s.at(i) =='A') a2.at(i)++;
a2.at(i) += a2.at(i+1);
}
/*rep(i,l) cout << a1.at(i) << ' '; cout << endl;
rep(i,l) cout << c.at(i) << ' '; cout << endl;
rep(i,l) cout << a2.at(i) << ' '; cout << endl;
rep(i,l) cout << w.at(i) << ' '; cout << endl;*/
rep(i,l){
if(a1.at(i)-c.at(i)<0 || a2.at(i)-w.at(i)<0){
cout << "No" << endl; return 0;
}
}
cout << "Yes" << endl;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0