結果
問題 | No.154 市バス |
ユーザー | Ai3Shota |
提出日時 | 2018-05-08 01:21:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,510 bytes |
コンパイル時間 | 1,426 ms |
コンパイル使用メモリ | 159,576 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 02:25:34 |
合計ジャッジ時間 | 2,152 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int T, N; string S; bool rec(int number = 0){ if(number == N) return true; int r = 0, m = 0, n = 0; int flag = false; if((r = S.find("W")) != string::npos && r < S.size()){ if((m = S.find("G", r)) != string::npos && m < S.size()){ if((n = S.find("R", m)) != string::npos && n < S.size()){ S.erase(S.begin() + r); S.erase(S.begin() + (m - 1)); S.erase(S.begin() + (n - 2)); flag = rec(number + 1); } } } return flag; } int main(void){ cin >> T; int i, j, k, p; for(i = 0; i < T; ++i){ cin >> S; j = k = p = 0; while((p = S.find("G", p)) != string::npos && p <= S.size()){ ++j; ++p; } p = 0; while((p = S.find("R", p)) != string::npos && p <= S.size()){ ++k; ++p; } if(j != k){ cout << "impossible" << endl; } else{ N = j; k = 0; for(j = S.size(); j >= 0; --j){ if(S[j] == 'W') ++k; if(k == N) break; } S.erase(S.begin(), S.begin() + j); cout << S << endl; if(rec()){ cout << "possible" << endl; } else cout << "impossible" << endl; } } return 0; }