結果
問題 | No.154 市バス |
ユーザー | Iruyan_Zak |
提出日時 | 2016-06-19 16:06:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 713 bytes |
コンパイル時間 | 637 ms |
コンパイル使用メモリ | 68,096 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 08:31:37 |
合計ジャッジ時間 | 1,305 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
5,248 KB |
testcase_01 | AC | 28 ms
5,248 KB |
testcase_02 | AC | 27 ms
5,248 KB |
testcase_03 | AC | 27 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 25 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> using namespace std; string solve(string str){ # define OK "possible" # define NG "impossible" int n = str.size(), w=0, buses=0, r=0; reverse(str.begin(), str.end()); if(str[0] != 'R') return NG; for(int i=0; i<n; ++i){ char c = str[i]; if(c == 'R') ++r; else if(c == 'G'){ if(--r < 0) return NG; ++buses; } else{ ++w; if(!buses) return NG; } } if(r != 0 || w < buses) return NG; return OK; } int main(){ int n; cin >> n; for(int i=0; i<n; ++i){ string str; cin >> str; cout << solve(str) << endl; } }