結果

問題 No.2240 WAC
ユーザー navel_tosnavel_tos
提出日時 2023-03-10 21:57:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 1,434 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,680 KB
最終ジャッジ日時 2024-09-18 04:13:54
合計ジャッジ時間 7,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 304 ms
14,560 KB
testcase_11 AC 306 ms
14,680 KB
testcase_12 AC 317 ms
14,528 KB
testcase_13 AC 127 ms
11,904 KB
testcase_14 AC 71 ms
11,264 KB
testcase_15 AC 236 ms
13,128 KB
testcase_16 AC 254 ms
13,432 KB
testcase_17 AC 188 ms
12,672 KB
testcase_18 AC 86 ms
11,648 KB
testcase_19 AC 106 ms
11,904 KB
testcase_20 AC 233 ms
13,408 KB
testcase_21 AC 144 ms
12,132 KB
testcase_22 AC 160 ms
12,416 KB
testcase_23 AC 126 ms
11,904 KB
testcase_24 AC 206 ms
13,260 KB
testcase_25 AC 207 ms
13,236 KB
testcase_26 AC 98 ms
11,776 KB
testcase_27 AC 82 ms
11,520 KB
testcase_28 AC 116 ms
11,904 KB
testcase_29 AC 58 ms
11,264 KB
testcase_30 AC 159 ms
12,540 KB
testcase_31 AC 280 ms
13,856 KB
testcase_32 AC 78 ms
11,392 KB
testcase_33 AC 164 ms
12,544 KB
testcase_34 AC 187 ms
12,976 KB
testcase_35 AC 51 ms
11,008 KB
testcase_36 AC 221 ms
13,132 KB
testcase_37 AC 264 ms
13,756 KB
testcase_38 AC 117 ms
11,776 KB
testcase_39 AC 289 ms
13,992 KB
testcase_40 AC 160 ms
12,408 KB
testcase_41 AC 205 ms
12,968 KB
testcase_42 AC 205 ms
12,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder380B

'''
Aで3WA。先が思いやられる。

N個の(W,A), M個の(A,C)を与える。
①順番を変えないように2文字選んで
②取り除く
をくり返すことで、N個のWAとM個のACを作れるか判定せよ。

W-A のマッチングを前から貪欲に行った後、A-Cのマッチングを後ろから貪欲に行えばよい。
matched[i]: i番目のAは使用済 として管理すればいいか。

違うな。
W-A のマッチングで使うAは右端から使いたくて、
A-C のマッチングで使うAは左端から使いたいのか。
matched[i]: TrueならA-Cのマッチング用のA, FalseならW-Aのマッチング用のA
'''
N,M=list(map(int,input().split()))
S=input()
matched=[False]*((N+M)*2)

Acount=M
for i in range((N+M)*2):
    if S[i]=='A' and Acount>0:
        matched[i]=True
        Acount-=1

hantei=True
Wcount=0
for i in range((N+M)*2):
    if S[i]=='W':
        Wcount+=1
    elif S[i]=='A':
        if matched[i]==False:
            if Wcount>0:
                Wcount-=1
            else:
                hantei=False

Ccount=0
for i in range((N+M)*2-1,-1,-1):
    if S[i]=='C':
        Ccount+=1
    elif S[i]=='A':
        if matched[i]==True:
            if Ccount>0:
                Ccount-=1
            else:
                hantei=False

print('Yes') if hantei else print('No')
                
0