結果

問題 No.154 市バス
ユーザー Ai3ShotaAi3Shota
提出日時 2018-05-08 02:09:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,251 bytes
コンパイル時間 1,290 ms
コンパイル使用メモリ 160,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 02:26:22
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
5,248 KB
testcase_01 AC 222 ms
5,376 KB
testcase_02 AC 224 ms
5,376 KB
testcase_03 AC 65 ms
5,376 KB
testcase_04 AC 231 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 902 ms
5,376 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int T, N;
string S;

bool rec(int number = 0){
    
    if(number == N) return true;
    
    int r = 0, g = 0, w = 0;
    int flag = false;
    
    if((r = S.rfind("R")) != string::npos){
        if((g = S.rfind("G", r)) != string::npos && S.find("R", g) != string::npos){
            if((w = S.rfind("W", g)) != string::npos && S.find("R", w) != string::npos && S.find("G", w) != string::npos){
                S[r] = S[g] = S[w] = 'A';
                flag = rec(number + 1);
            }
        }
    }
    
    return flag;
}

int main(void){
    
    cin >> T;
    
    int i, j, k, p;
    for(i = 0; i < T; ++i){
        cin >> S;
        
        j = k = p = 0;
        while((p = S.find("G", p)) != string::npos && p <= S.size()){
            ++j;
            ++p;
        }
        p = 0;
        while((p = S.find("R", p)) != string::npos && p <= S.size()){
            ++k;
            ++p;
        }
        
        if(j != k){
            cout << "impossible" << endl;
        }
        else{
            N = j;
            if(rec()){
                cout << "possible" << endl;
            }
            else cout << "impossible" << endl;
        }
        
    }
    
    return 0;
}
0