結果

問題 No.154 市バス
ユーザー cureskolcureskol
提出日時 2020-04-09 11:08:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 1,557 ms
コンパイル使用メモリ 167,048 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 06:46:49
合計ジャッジ時間 2,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<typename T>
void chmax(T &a,T b){
  if(a<b)a=b;
}

signed main(){
  int n;cin>>n;
  while(n--){
    bool out=false;
    string s;cin>>s;
    reverse(s.begin(),s.end());
    int r=0,b=0;bool B=0;
    for(auto p:s){
      if(p=='R')r++;
      if(p=='G'){
        r--;
        chmax(b,0);b++;
        if(r<0)out=1;
        B=1;
      }
      if(p=='W'){if(!B)out=1;b--;}
    }
    if(r||(b>0))out=1;
    cout<<(out?"impossible":"possible")<<endl;
  }
}
0