結果

問題 No.154 市バス
ユーザー lowrlowr
提出日時 2018-11-02 13:13:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 833 bytes
コンパイル時間 1,673 ms
コンパイル使用メモリ 173,636 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 16:21:36
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
6,812 KB
testcase_01 AC 28 ms
6,940 KB
testcase_02 AC 29 ms
6,940 KB
testcase_03 AC 27 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 26 ms
6,940 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int main() {
    int t;
    std::cin >> t;
    while (t--) {
        std::string s;
        std::cin >> s;
        bool flg = true;
        int a = 0, w = 0;
        std::deque<int> q;
        for (auto c : s) {
            switch (c) {
                case 'W':
                w++;
                break;
                case 'G':
                q.push_back(1);
                a = std::max(a, (int)q.size());
                break;
                case 'R':
                if (q.size() == 0) {
                    goto g;
                } else {
                    q.pop_back();
                }
            }
        }
        std::cout << (q.size() == 0 && w >= a ? "possible" : "impossible") << std::endl;
        continue;
g:
        std::cout << "impossible" << std::endl;
    }
    return 0;
}
0