結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
tottoripaper
|
| 提出日時 | 2015-03-04 18:33:47 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,136 bytes |
| コンパイル時間 | 584 ms |
| コンパイル使用メモリ | 57,060 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-13 07:10:17 |
| 合計ジャッジ時間 | 1,918 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 7 WA * 1 |
ソースコード
#include <iostream>
std::string S;
bool used[1000];
int L;
int count(char c){
int res = 0;
for(int i=0;i<L;i++){
if(S[i] == c){res++;}
}
return res;
}
int find(char c, int ub){
for(int i=0;i<ub;i++){
if(S[i] == c && !used[i]){
return i;
}
}
return -1;
}
int main(){
int T;
std::cin >> T;
while(T--){
std::cin >> S;
L = S.size();
for(int i=0;i<L;i++){used[i] = false;}
bool can = true;
if(count('R') != count('G') ||
L < count('R') * 3 ||
S[L-1] == 'W'){
can = false;
}else{
for(int i=0;i<L;i++){
if(S[i] == 'R'){
int g_index = find('G', i);
if(g_index == -1){can = false; break;}
used[g_index] = true;
int w_index = find('W', g_index);
if(w_index == -1){can = false; break;}
used[w_index] = true;
}
}
}
std::cout << (can ? "possible" : "impossible") << std::endl;
}
}
tottoripaper