結果

問題 No.2148 ひとりUNO
ユーザー daiotadaiota
提出日時 2022-12-08 18:06:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,270 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 174,364 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-22 16:03:01
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 6 ms
5,376 KB
testcase_37 AC 7 ms
5,376 KB
testcase_38 AC 7 ms
5,376 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0;i<int(n);i++)
typedef long long ll;
typedef pair<ll,ll> P;

int a[3][200010];

int main(void){
	int i;

	cin.tie(0);  ios_base::sync_with_stdio(false);

	int T;
	cin >> T;
	REP(tc,T){

		int N;
		cin >> N;
		int b=0,g=0,r=0;
		REP(i,N){
			char c;
			int x;
			cin >> c >> x;
			if(c=='B'){
				b++;
				a[0][x]=1;
			}
			if(c=='G'){
				g++;
				a[1][x]=1;
			}
			if(c=='R'){
				r++;
				a[2][x]=1;
			}

		}

		map<string,int> m;
		for(i=1;i<=N;i++){
			if(a[0][i] && a[1][i] && a[2][i]) m["BGR"]++;
			else if(a[0][i] && a[1][i]) m["BG"]++;
			else if(a[1][i] && a[2][i]) m["GR"]++;
			else if(a[2][i] && a[0][i]) m["RB"]++;
		}

		bool f=false;
		if(b!=0 && g==0 && r==0) f=true;
		if(g!=0 && r==0 && b==0) f=true;
		if(r!=0 && b==0 && g==0) f=true;

		if(b==0 && g!=0 && r!=0 && m["GR"]!=0) f=true;
		if(g==0 && r!=0 && b!=0 && m["RB"]!=0) f=true;
		if(r==0 && b!=0 && g!=0 && m["BG"]!=0) f=true;

		if(m["GR"]!=0 && m["RB"]!=0) f=true;
		if(m["RB"]!=0 && m["BG"]!=0) f=true;
		if(m["BG"]!=0 && m["GR"]!=0) f=true;

		if(m["RB"]!=0 && m["BG"]!=0 && m["GR"]!=0) f=true;


		if(f) cout << "YES" << endl;
		else cout << "NO" << endl;

		REP(i,3) REP(j,N+1) a[i][j]=0;

	}



	return 0;
}
0