結果
問題 | No.154 市バス |
ユーザー | tokkaka |
提出日時 | 2016-07-18 15:14:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,324 bytes |
コンパイル時間 | 776 ms |
コンパイル使用メモリ | 93,944 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 08:38:16 |
合計ジャッジ時間 | 1,473 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:27:30: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized] 27 | else if(c=='R') r++; | ~^~ main.cpp:24:16: note: 'r' was declared here 24 | int g, r, w; | ^ main.cpp:26:25: warning: 'g' may be used uninitialized [-Wmaybe-uninitialized] 26 | if(c=='G') g++; | ~^~ main.cpp:24:13: note: 'g' was declared here 24 | int g, r, w; | ^
ソースコード
#include <iostream> #include <sstream> #include <string> #include <vector> #include <functional> #include <tuple> #include <climits> #include <algorithm> #include <queue> #include <unordered_map> #include <unordered_set> #include <set> #include <iomanip> using namespace std; int main() { int T; cin >> T; for(int i=0; i<T; i++) { string S; cin >> S; int g, r, w; for(auto c : S) { if(c=='G') g++; else if(c=='R') r++; else w++; } int count = 0; if(r != g) goto impossible; for(int i=0; i<S.size(); i++) { if(S[i]=='W') { S[i] = ' '; size_t gpos = S.find('G', i); if(gpos==string::npos) goto impossible; S[gpos] = ' '; size_t rpos = S.find('R', gpos); if(rpos==string::npos) goto impossible; S[rpos] = ' '; count++; if(count == g) { if(i+1 < S.size()) goto impossible; break; } } else if(S[i] != ' '){ goto impossible; } } cout << "possible" << endl; continue; impossible: cout << "impossible" << endl; } return 0; }