結果

問題 No.154 市バス
ユーザー mocobtmocobt
提出日時 2018-06-09 19:02:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,159 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 12:58:21
合計ジャッジ時間 1,522 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <queue>
#include <string>

using namespace std;

auto T=0;
queue<int> que;

void input(){
    scanf("%d", &T);
}


void solve(){
    for(int i=0; i<T; i++){
        string s;
        cin >> s;
        while(!que.empty()){
            que.pop();
        }
        
        int length = s.length();
        bool possible = true;
        bool fin = false;
        for(int j=0;j<length;j++){
            switch(s[j]){
                case 'W':
                    fin = false;
                    break;
                case 'G':
                    que.push(1);
                    fin = false;
                    break;
                case 'R':
                    if(que.empty()){
                        possible = false;
                        break;
                    }
                    fin = true;
                    que.pop();
            }
            if(!possible) break;
        }
        if(!que.empty()||!fin) possible = false;

        if(possible){
            printf("possible\n");
        }else{
            printf("Impossible\n");
        }
    }
}

int main(){
    input();
    solve();
}
0