結果
問題 | No.154 市バス |
ユーザー | hotpepsi |
提出日時 | 2015-02-18 01:48:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,229 bytes |
コンパイル時間 | 544 ms |
コンパイル使用メモリ | 63,576 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 06:44:56 |
合計ジャッジ時間 | 2,945 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 244 ms
5,248 KB |
testcase_01 | AC | 248 ms
5,248 KB |
testcase_02 | AC | 244 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 403 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
ソースコード
#include <iostream> #include <algorithm> #include <sstream> #include <cstring> using namespace std; bool can(const string &s) { string r = s; reverse(r.begin(), r.end()); while (r.length() > 1) { int pos = r.find('R', 1); if (pos < 0) { break; } r = r.substr(0, pos) + r.substr(pos + 1); pos = r.find('G', pos); if (pos < 0) { return false; } r = r.substr(0, pos) + r.substr(pos + 1); int first = -1; for (int i = pos; i < (int)r.length(); ++i) { if (r[i] == 'W' || r[i] == 'X') { r[i] = 'X'; if (first < 0) { first = i; } } } if (first < 0) { return false; } r = r.substr(0, first) + r.substr(first + 1); } if (r.length() < 3 || r[0] != 'R') { return false; } int g = 0; int f = 0; for (int i = 1; i < (int)r.length(); ++i) { if (r[i] == 'R') { return false; } else if (r[i] == 'G') { if (++g > 1) { return false; } } else { if (g) { f = 1; } else if (r[i] == 'W') { return false; } } } return true; } int main(int argc, char *argv[]) { string s; getline(cin, s); int T = atoi(s.c_str()); for (int i = 0; i < T; ++i) { getline(cin, s); cout << (can(s) ? "possible" : "impossible") << endl; } return 0; }