結果

問題 No.154 市バス
ユーザー rantdrantd
提出日時 2015-02-25 19:43:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 2,490 bytes
コンパイル時間 1,442 ms
コンパイル使用メモリ 150,748 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-03 09:43:57
合計ジャッジ時間 2,133 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

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

#define repu(i, begin, end) for (__typeof(begin) i = (begin) - ((begin) > (end)); i != (end) - ((begin) > (end)); i += 1 - 2 * ((begin) > (end)))
#define repe(i, begin, end) for (__typeof(begin) i = (begin); i != (end) + 1 - 2 * ((begin) > (end)); i += 1 - 2 * ((begin) > (end)))
#define mem(a, x) memset(a, x, sizeof(a))
#define all(a) a.begin(), a.end()
#define count_bits(x) __builtin_popcount(x)
#define count_bitsll(x) __builtin_popcountll(x)
#define least_bits(x) __builtin_ffs(x)
#define least_bitsll(x) __builtin_ffsll(x)
#define most_bits(x) 32 - __builtin_clz(x)
#define most_bitsll(x) 64 - __builtin_clz(x)

vector<string> split(const string &s, char c) {
	vector<string> v;
	stringstream ss(s);
	string x;
	while (getline(ss, x, c)) v.push_back(x);
	return v;
}

#define error(args...) { vector<string> _v = split(#args, ','); err(_v.begin(), args); }

void err(vector<string>::iterator it) {}

template<typename T, typename... Args>
void err(vector<string>::iterator it, T a, Args... args) {
	cerr << it -> substr((*it)[0] == ' ', it -> length()) << " = " << a << '\n';
	err(++it, args...);
}

typedef long long ll;
const int MOD = 1000000007;

template<class T> inline T tmin(T a, T b) {return (a < b) ? a : b;}
template<class T> inline T tmax(T a, T b) {return (a > b) ? a : b;}
template<class T> inline void amax(T &a, T b) {if (b > a) a = b;}
template<class T> inline void amin(T &a, T b) {if (b < a) a = b;}
template<class T> inline T tabs(T a) {return (a > 0) ? a : -a;}
template<class T> T gcd(T a, T b) {while (b != 0) {T c = a; a = b; b = c % b;} return a;}

inline void NO() {
	printf("impossible\n");
}

inline void YES() {
	printf("possible\n");
}

int main(int argc, char *argv[]) {
    ios_base::sync_with_stdio(false);
    int ntest;
    string s;
    cin >> ntest;
    while (ntest--) {
    	cin >> s;
    	int n = s.length();
    	bool ok = true;
    	if (s[n - 1] != 'R') ok = false;
    	int pos = -1, cnt[3];
    	mem(cnt, 0);
    	repu(i, 0, n) {
    		if (s[i] == 'G') {
    			pos = i, cnt[1]++;
    			if (cnt[0] < cnt[1]) ok = false;
    		}
    		if (s[i] == 'R') {
    			cnt[2]++;
    			if (tmin(cnt[0], cnt[1]) < cnt[2]) ok = false;
    		}
    		if (s[i] == 'W') cnt[0]++;
    	}
    	if (!cnt[0] || !cnt[1] || !cnt[2]) ok = false;
    	if (cnt[1] != cnt[2] || cnt[0] < cnt[1]) ok = false;
    	repu(i, pos, n) if (s[i] == 'W') ok = false;

    	if (ok) YES();
    	else NO();
    }
    return 0;
}
0