結果

問題 No.154 市バス
ユーザー BantakoBantako
提出日時 2018-06-04 20:55:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 968 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 168,188 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 09:45:49
合計ジャッジ時間 2,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
6,816 KB
testcase_01 AC 28 ms
6,944 KB
testcase_02 AC 29 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 27 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 26 ms
6,944 KB
testcase_08 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int INF = 1e9;
int MOD = 1e9+7;

main(){  
    int N;
    cin >> N;
    for(int i = 0;i < N;i++){
        string S;
        cin >> S;
        //reverse(S.begin(),S.end());
        int rcnt = 0,gcnt = 0,wcnt = 0;
        bool ng = 0;
        for(char c:S){
            if(c == 'R')rcnt++;
            if(c == 'G')gcnt++;
            if(c == 'W')wcnt++;
            //GR列が対応してない
            if(gcnt < rcnt){ng = 1;break;}
            //全ての'G'に対して'W'が一つ以上ない
            if(gcnt > wcnt){ng = 1;break;}
            //if(c == 'W' && (rcnt == 0 || gcnt == 0)){ng = 1;break;}
        }
        //最後の{G,R}の後ろにWが存在する
        for(int i = S.size() - 1;i >= 0;i--){
            if(S[i] == 'W'){ng = 1;break;}
            if(S[i] == 'G')break;
        }
        if(ng)cout << "impossible" << endl;
        else cout << "possible" << endl;
    }
}
0