結果
問題 | No.154 市バス |
ユーザー | snrnsidy |
提出日時 | 2021-03-07 20:30:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,471 bytes |
コンパイル時間 | 1,250 ms |
コンパイル使用メモリ | 123,312 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 03:31:56 |
合計ジャッジ時間 | 1,886 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 5 ms
5,248 KB |
testcase_08 | WA | - |
ソースコード
#include <map> #include <set> #include <list> #include <cmath> #include <ctime> #include <deque> #include <queue> #include <stack> #include <bitset> #include <cstdio> #include <limits> #include <vector> #include <cstdlib> #include <numeric> #include <sstream> #include <iostream> #include <algorithm> #include <functional> #include <iomanip> #include <unordered_map> #include <memory.h> #include <unordered_set> #include <fstream> using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int T; cin >> T; while (T--) { string s; cin >> s; int n = s.length(); int w = 0; int g = 0; int r = 0; bool ok = true; for (int i = 0; i < n; i++) { if (s[i] == 'W') { w++; } else if (s[i] == 'G') { if (w == 0) { ok = false; break; } g++; w--; } else { if (g == 0) { ok = false; break; } r++; g--; } } if (ok) { w = 0; g = 0; r = 0; for (int i = n - 1; i >= 0; i--) { if (s[i] == 'R') { r++; } else if (s[i] == 'G') { if (r == 0) { ok = false; break; } g++; r--; } else { if (g == 0) { ok = false; break; } g--; w++; } } } if (s[n - 1] != 'R' || s[0] != 'W') { ok = false; } if (!ok) { cout << "impossible" << '\n'; } else { cout << "possible" << '\n'; } } return 0; }