結果
問題 | No.154 市バス |
ユーザー | data9824 |
提出日時 | 2015-05-26 02:04:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 424 ms |
コンパイル使用メモリ | 59,232 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 07:22:42 |
合計ジャッジ時間 | 1,199 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
6,816 KB |
testcase_01 | AC | 28 ms
6,816 KB |
testcase_02 | AC | 28 ms
6,816 KB |
testcase_03 | AC | 23 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 22 ms
6,816 KB |
testcase_08 | WA | - |
ソースコード
#include <iostream> #include <string> #include <algorithm> using namespace std; bool possible(const string& s) { int gCount = 0; for (size_t i = 0; i < s.size(); ++i) { char ch = s[i]; if (ch == 'G') { ++gCount; } else if (ch == 'R') { if (gCount == 0) { return false; } --gCount; } } if (gCount != 0) { return false; } int rootCount = 0; int whiteCount = 0; for (int i = s.size() - 1; i >= 0; --i) { char ch = s[i]; if (ch == 'R') { ++rootCount; } else if (ch == 'W') { if (rootCount == 0) { return false; } whiteCount = min(rootCount, whiteCount + 1); } } if (whiteCount != rootCount) { return false; } return true; } int main() { int t; cin >> t; for (int i = 0; i < t; ++i) { string s; cin >> s; cout << (possible(s) ? "possible" : "impossible") << endl; } return 0; }