結果
問題 | No.154 市バス |
ユーザー | fantasiabaetica |
提出日時 | 2018-09-25 12:38:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 1,214 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 56,156 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 04:29:54 |
合計ジャッジ時間 | 1,214 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
5,248 KB |
testcase_01 | AC | 26 ms
5,248 KB |
testcase_02 | AC | 26 ms
5,248 KB |
testcase_03 | AC | 25 ms
5,248 KB |
testcase_04 | AC | 26 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 22 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> #define FOR(i,a,b) for(int i=(a); i<(b); i++) using namespace std; int solve(string str){ // 最後から2本目より前のバスが走っている可能性のある系統の最大数と最少数 int max_n = 0; int min_n = 0; // 最後から一本目が走ったが、最後の一本は走っていない系統の数 int last = 0; FOR(j, 0, str.size()){ char c = str[j]; if (c == 'W'){ max_n++; min_n = 1; } else if (c == 'G'){ max_n--; min_n = 0; if (max_n < 0) return 0; last += 1; } else{ last--; if (last < 0) return 0; } } // lastが0かつRで終わる場合のみあり得るパターン if (last == 0 && min_n == 0 && str[str.size() - 1] == 'R'){ return 1; } else { return 0; } } int main(){ int t; cin >> t; FOR(i, 0, t){ string str; cin >> str; int if_possible = solve(str); if(if_possible){ cout << "possible" << endl; } else { cout << "impossible" << endl; } } return 0; }