結果

問題 No.2148 ひとりUNO
ユーザー 沙耶花沙耶花
提出日時 2022-12-05 23:45:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,103 bytes
コンパイル時間 4,651 ms
コンパイル使用メモリ 261,988 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-20 21:39:15
合計ジャッジ時間 5,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 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 12 ms
6,940 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001

bool solve(){
	int n;
	cin>>n;
	
	vector<vector<int>> t(3);
	rep(i,n){
		char c;
		int v;
		cin>>c>>v;
		
		t[(c%3)].push_back(v);
	}
	rep(i,3)sort(t[i].begin(),t[i].end());
	
	if(t[1].size()==0)return true;
	if(t[0].size()==0){
		rep(i,t[1].size()){
			if(binary_search(t[2].begin(),t[2].end(),t[1][i]))return true;
		}
		return false;
	}
	
	do{
		set<int> S;
		rep(i,t[0].size()){
			if(binary_search(t[1].begin(),t[1].end(),t[0][i]))S.insert(t[0][i]);
		}
		if(S.size()==0)continue;
		rep(i,t[1].size()){
			if(binary_search(t[2].begin(),t[2].end(),t[1][i])){
				if(S.size()>=2 || t[1].size()==1)return true;
				if((*S.begin())!=t[1][i])return true;
			}
		}
	}
	while(next_permutation(t.begin(),t.end()));
	return false;
}


int main(){
	
	int _t;
	cin>>_t;
	
	rep(_,_t){
		if(solve())cout<<"YES"<<endl;
		else cout<<"NO"<<endl;
	}
	
	return 0;
}
0