結果

問題 No.2240 WAC
ユーザー shoshoshom
提出日時 2023-03-10 22:31:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,165 bytes
コンパイル時間 1,785 ms
コンパイル使用メモリ 196,420 KB
最終ジャッジ日時 2025-02-11 08:43:57
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 36 WA * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |     scanf("%d%d", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~
main.cpp:13:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |     scanf("%s", s);
      |     ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int N = 400010;
char s[N];
bool used[N];

int main()
{
    int n, m;
    scanf("%d%d", &n, &m);
    scanf("%s", s);
    deque<int> a;
    int all = n + n + m + m;
    for (int i = 0; i < all; i++)
    {
        if (s[i] == 'A') a.push_back(i);
    }
    bool ok = true;
    int i = 0, j = all - 1;
    while (ok && i <= j)
    {
        char left = s[i];
        char right = s[j];
        if (left == 'C')
        {
            int p = a.front();
            ok &= p < i;
            a.pop_front();
        }
        else if (left == 'W')
        {
            int p = a.back();
            ok &= i < p;
            a.pop_back();
        }

        if (i != j)
        {
            if (right == 'W')
            {
                int p = a.back();
                ok &= j < p;
                a.pop_back();
            }
            else if (right == 'C')
            {
                int p = a.front();
                ok &= p < j;
                a.pop_front();
            }
        }
        i++;
        j--;
    }

    if (ok)
        printf("Yes\n");
    else
        printf("No\n");

    return 0;
}
0