結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
しらっ亭
|
| 提出日時 | 2016-06-12 21:48:15 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 2,000 ms |
| コード長 | 1,006 bytes |
| コンパイル時間 | 1,367 ms |
| コンパイル使用メモリ | 167,540 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-13 08:28:48 |
| 合計ジャッジ時間 | 2,062 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define forr(x,arr) for(auto&& x:arr)
#define rep(i,a,b) for (int i = (a); i < (b); i++)
#define rrep(i,a,b) for (int i = (b)-1; i >= (a); i--)
#define ALL(x) (x).begin(), (x).end()
#define BIT(n) (1LL<<(n))
#define SZ(x) ((int)(x).size())
#define fst first
#define snd second
#define DUMP( x ) cerr << #x << " = " << ( x ) << endl
typedef long long ll;
// -------------------------------------
void Main() {
string s;
cin >> s;
map<char, int> co;
bool ok = 1;
int lw=-1,lg=-1;
rep(i, 0, SZ(s)) {
char c = s[i];
co[c]++;
if (co['W'] < co['G'] || co['G'] < co['R']) {
ok = 0;
break;
}
if (c == 'G') lg = i;
if (c == 'W') lw = i;
}
if (co['G'] != co['R']) {
ok = 0;
}
if (lg < lw) ok = 0;
puts(ok ? "possible" : "impossible");
}
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int T;
cin >> T;
while (T--) Main();
return 0;
}
しらっ亭