結果

問題 No.154 市バス
ユーザー umezoumezo
提出日時 2022-08-13 02:43:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 202,560 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 14:16:31
合計ジャッジ時間 2,844 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  int t;
  cin>>t;
  while(t--){
    string s;
    cin>>s;
    int n=s.size();
    int G=0,R=0;
    rep(i,n){
      if(s[i]=='G') G++;
      else if(s[i]=='R') R++;
    }
    if(G!=R || G==0 || n-G-R<G){
      cout<<"impossible"<<endl;
      continue;
    }
    int w=0,g=0,r=0;
    bool b=true;
    for(int i=n-1;i>=0;i--){
      if(s[i]=='G'){
        g++;
        w++;
      }
      else if(s[i]=='R') r++;
      else w=max(w-1,0);
      if(g>r){
        b=false;
        break;
      }
    }
    if(b && w==0) cout<<"possible"<<endl;
    else cout<<"impossible"<<endl;
  }
  
  return 0;
}
0