結果
問題 |
No.2240 WAC
|
ユーザー |
|
提出日時 | 2023-03-10 22:06:04 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 919 bytes |
コンパイル時間 | 2,207 ms |
コンパイル使用メモリ | 197,328 KB |
最終ジャッジ日時 | 2025-02-11 08:23:04 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 WA * 8 |
コンパイルメッセージ
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); | ~~~~~^~~~~~~~~
ソースコード
#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; for (int i = 0; i < all; i++) { char ch = s[i]; if (used[i] || s[i] == 'A') continue; int left = i, right = i; if (ch == 'C') { left = a.front(); a.pop_front(); } else if (ch == 'W') { right = a.back(); a.pop_back(); } if (left >= right) { ok = false; break; } used[left] = used[right] = true; } ok &= a.empty(); if (ok) printf("Yes\n"); else printf("No\n"); return 0; }