結果
問題 | No.154 市バス |
ユーザー | nmnmnmnmnmnmnm |
提出日時 | 2015-02-18 00:13:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,640 bytes |
コンパイル時間 | 932 ms |
コンパイル使用メモリ | 87,960 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 06:36:23 |
合計ジャッジ時間 | 3,507 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 244 ms
5,248 KB |
testcase_01 | AC | 240 ms
5,248 KB |
testcase_02 | AC | 241 ms
5,248 KB |
testcase_03 | AC | 199 ms
5,248 KB |
testcase_04 | AC | 217 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 503 ms
5,248 KB |
testcase_08 | WA | - |
ソースコード
#include <algorithm> #include <cfloat> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstdlib> #include <cstring> #include <functional> #include <iostream> #include <map> #include <memory> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; #define sz size() #define pb push_back #define mp make_pair #define fi first #define se second #define all(c) (c).begin(), (c).end() #define rep(i,a,b) for(int i=(a);i<(b);++i) #define clr(a, b) memset((a), (b) ,sizeof(a)) #define MOD 1000000007 int main(){ int n; cin>>n; rep(i,0,n){ string s; cin>>s; int c = 0; int flag = 1; int index1 = 0; int index2 = 0; int index3 = 0; for(;;){ if(index3==s.sz){ flag = 0; break; } if(index1>index2||index2>index3){ flag = 0; break; } if(s[index1]=='W'&&s[index2]=='G'&&s[index3]=='R'){ c++; if(c*2==count(all(s),'G')+count(all(s),'R')&&c<=count(all(s),'W')){ break; } index1++; index2++; index3++; } else if(s[index3]!='R'){ index3++; } else if(s[index2]!='G'){ index2++; } else{ index1++; } } if(flag == 0){ cout << "impossible" << endl; } else{ cout << "possible" << endl; } } return 0; }