結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-06-09 19:12:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,033 bytes |
| コンパイル時間 | 664 ms |
| コンパイル使用メモリ | 77,088 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-30 12:58:57 |
| 合計ジャッジ時間 | 1,411 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 4 WA * 4 |
ソースコード
#include <cstdio>
#include <iostream>
#include <queue>
#include <string>
#include <algorithm>
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();
}
reverse(s.begin(),s.end());
int length = s.length();
bool possible = true;
for(int j=0;j<length;j++){
switch(s[j]){
case 'R':
que.push(1);
break;
case 'G':
if(que.empty()){
possible = false;
break;
}
que.pop();
}
if(!possible) break;
}
if(!que.empty()) possible = false;
if(possible){
printf("possible\n");
}else{
printf("Impossible\n");
}
}
}
int main(){
input();
solve();
}