結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-02-18 19:38:24 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,115 bytes |
| コンパイル時間 | 675 ms |
| コンパイル使用メモリ | 92,588 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-13 06:56:38 |
| 合計ジャッジ時間 | 1,416 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 6 WA * 2 |
ソースコード
#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;
bool solve(const string& s)
{
int n = s.size();
vector<int> cnt(2, 0);
for(int i=0; i<n; ++i){
if(s[i] == 'W'){
++ cnt[0];
}
else if(s[i] == 'G'){
if(cnt[0] == 0)
return false;
-- cnt[0];
++ cnt[1];
}
else{
if(cnt[1] == 0)
return false;
-- cnt[1];
}
}
if(cnt[1] == 0)
return true;
else
return false;
}
int main()
{
int t;
cin >> t;
while(--t >= 0){
string s;
cin >> s;
if(solve(s))
cout << "possible" << endl;
else
cout << "impossible" << endl;
}
return 0;
}