結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-05-06 23:24:02 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 820 bytes |
| コンパイル時間 | 579 ms |
| コンパイル使用メモリ | 71,028 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-13 08:20:38 |
| 合計ジャッジ時間 | 1,782 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | AC * 5 WA * 2 RE * 1 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
int main(){
std::ios::sync_with_stdio(false);
std::cin.tie(0);
int t;
std::cin >> t;
for(int i=0; i<t; ++i){
std::vector<int> imos;
std::string str;
std::cin >> str;
for(auto c : str){
switch(c){
case 'G': imos.push_back( 1); break;
case 'R': imos.push_back(-1); break;
}
}
std::cout << (([&]() -> bool {
if(imos[0]==-1) return false;
for(size_t j=1; j<imos.size(); ++j){
imos[j] += imos[j-1];
if(imos[j]<0) return false;
}
if(imos.back()!=0) return false;
return true;
}())? "possible\n" : "impossible\n");
}
return 0;
}