結果

問題 No.154 市バス
ユーザー 古寺いろは古寺いろは
提出日時 2015-03-27 01:21:11
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 745 bytes
コンパイル時間 1,264 ms
コンパイル使用メモリ 161,868 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-21 08:25:14
合計ジャッジ時間 2,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 24 ms
6,940 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

bool check(string S){
	vector<int> count(3);
	bool flag = true;
	int pp = 0;
	for (int i = S.size() - 1; i >= 0; i--)
	{
		int r = 0;
		if (S[i] == 'G') r = 1;
		if (S[i] == 'R') r = 2;
		count[r]++;
		if (count[0] != 0 && count[1] == 0) return false;
		if (count[0] != 0 && count[2] == 0) return false;
		if (count[2] < count[1]) return false;
		if (r == 0) pp = min(pp + 1, count[1]);
	}
	if (count[2] != count[1]) return false;
	if (count[0] < count[1]) return false;
	if (pp != count[0]) return false;
	return true;
}

int main() {
	int N;
	cin >> N;
	for (int t = 0; t < N; t++)
	{
		string S;
		cin >> S;
		if (check(S)) cout << "possible" << endl;
		else cout << "impossible" << endl;
	}
}

0