結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
tottoripaper
|
| 提出日時 | 2015-03-04 19:09:31 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 2,000 ms |
| コード長 | 1,203 bytes |
| コンパイル時間 | 470 ms |
| コンパイル使用メモリ | 56,308 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-13 07:10:26 |
| 合計ジャッジ時間 | 1,187 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
// ナニソレイミワカンナイ
#include <iostream>
#include <cstring>
std::string S;
int L;
int count(char c){
int res = 0;
for(int i=0;i<L;i++){
if(S[i] == c){res++;}
}
return res;
}
int max(char c){
for(int i=L-1;i>=0;i--){
if(S[i] == c){return i;}
}
return -1;
}
int main(){
int T;
std::cin >> T;
while(T--){
std::cin >> S;
L = S.size();
bool can = true;
if(count('R') != count('G') ||
L < count('R') * 3){
can = false;
}else{
int w = 0, g = 0, r = 0;
while(r < L && S[r] != 'R'){r++;}
for(;r<L;){
while(w < L && S[w] != 'W'){w++;}
while(g < L && S[g] != 'G'){g++;}
if(w == L || g == L || w > g || g > r){can = false; break;}
r++;
while(r < L && S[r] != 'R'){r++;}
w++; g++;
}
int g_mx = max('G');
for(int i=g_mx+1;i<L;i++){
if(S[i] == 'W'){can = false; break;}
}
}
std::cout << (can ? "possible" : "impossible") << std::endl;
}
}
tottoripaper