結果
問題 | No.154 市バス |
ユーザー | PicklesSuperior |
提出日時 | 2019-03-14 13:21:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 1,760 bytes |
コンパイル時間 | 524 ms |
コンパイル使用メモリ | 63,592 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 08:39:07 |
合計ジャッジ時間 | 1,336 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
5,248 KB |
testcase_01 | AC | 26 ms
5,376 KB |
testcase_02 | AC | 27 ms
5,376 KB |
testcase_03 | AC | 25 ms
5,376 KB |
testcase_04 | AC | 26 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 24 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
ソースコード
#include<iostream> #include<vector> #include<string> using namespace std; int main(){ int T; vector<string> bus_memos; string row; cin >> T; for(int i=0;i<T;i++){ cin >> row; bus_memos.push_back(row); } /** for(int i=0;i<T;i++){ cout<< bus_memos[i] <<endl; for(int j=0;j<bus_memos[i].size();j++){ cout<< bus_memos[i][j] <<endl; } } **/ for(int i=0;i<T;i++){ int T_memo = bus_memos[i].size(); int white=0,green=0,red=0,bus_count=1; bool next=false; bool judge=true; for(int j=0;j<T_memo;j++){ switch(bus_memos[i][j]){ case 'W': white+=1; if(next==true){ bus_count+=1; next=false; } break; case 'G': green+=1; if(next==true){ bus_count+=1; }else{ next=true; } break; case 'R': red+=1; break; } //cout<< "whit:" << white << " green:" << green << " red:" << red << " bus_c:"<< bus_count << endl; if(white<green || green<red){ judge=false; break; } } if(!(red==bus_count) || bus_count>white) judge=false; //cout<< "whit:" << white << " green:" << green << " red:" << red << " bus_c:"<< bus_count << endl; if(judge){ cout << "possible" << endl; }else{ cout << "impossible" << endl; } } return 0; }