結果

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int N = 400010;
char s[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;

    for (int i = 0; i < all; i++)
    {
        char ch = s[i];
        if (ch == 'A') continue;
        int left = i, right = i;
        if (ch == 'C')
        {
            left = a.front();
            a.pop_front();
        }
        else
        {
            right = a.back();
            a.pop_back();
        }

        if (left >= right)
        {
            ok = false;
            break;
        }
    }

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

    return 0;
}
0