結果
問題 | No.2148 ひとりUNO |
ユーザー | hotman78 |
提出日時 | 2022-12-05 11:19:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,313 bytes |
コンパイル時間 | 2,702 ms |
コンパイル使用メモリ | 223,816 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 09:13:18 |
合計ジャッジ時間 | 4,885 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | AC | 53 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | AC | 52 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 22 ms
5,248 KB |
testcase_27 | AC | 21 ms
5,248 KB |
testcase_28 | AC | 21 ms
5,248 KB |
testcase_29 | AC | 21 ms
5,248 KB |
testcase_30 | AC | 20 ms
5,248 KB |
testcase_31 | AC | 20 ms
5,248 KB |
testcase_32 | AC | 21 ms
5,248 KB |
testcase_33 | AC | 21 ms
5,248 KB |
testcase_34 | AC | 21 ms
5,248 KB |
testcase_35 | AC | 20 ms
5,248 KB |
testcase_36 | AC | 21 ms
5,248 KB |
testcase_37 | AC | 21 ms
5,248 KB |
testcase_38 | AC | 21 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using lint=long long; #define rep(i,n) for(int i=0;i<int(n);++i) #define all(n) (n).begin(),(n).end() void solve(){ lint n; cin>>n; vector<string>s(n); vector<lint>cnt(3); set<pair<lint,char>>ss; rep(i,n){ string tmp; char c; lint j; cin>>tmp>>j; c=tmp[0]; j--; if(ss.count(make_pair(j,c))){ assert(0); } ss.emplace(j,c); assert(0<=j&j<n); s[j]+=c; string t="BGR"; rep(k,3){ if(t[k]==c){ cnt[k]++; } } } assert(cnt[0]+cnt[1]+cnt[2]==n); rep(i,n)sort(all(s[i])); sort(all(s)); lint p=count(all(s),"GR"); lint q=count(all(s),"BR"); lint r=count(all(s),"BG"); if((p&&q)||(q&&r)||(r&&p)){ cout<<"YES"<<endl; }else if((p||q||r)&&count(all(s),"BGR")){ cout<<"YES"<<endl; }else if(count(all(s),"BGR")&&*min_element(all(cnt))==1){ cout<<"YES"<<endl; }else if((p&&cnt[0]==0)||(q&&cnt[1]==0)||(r&&cnt[2]==0)){ cout<<"YES"<<endl; }else if((cnt[0]==n)||(cnt[1]==n)||(cnt[2]==n)){ cout<<"YES"<<endl; }else{ cout<<"NO"<<endl; } } int main(){ int t; cin>>t; while(t--)solve(); }