結果
問題 | No.2148 ひとりUNO |
ユーザー | Nzt3 |
提出日時 | 2022-12-17 23:57:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,286 bytes |
コンパイル時間 | 2,242 ms |
コンパイル使用メモリ | 207,944 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-04-28 15:09:39 |
合計ジャッジ時間 | 4,471 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 6 ms
5,376 KB |
testcase_27 | AC | 7 ms
5,376 KB |
testcase_28 | AC | 6 ms
5,376 KB |
testcase_29 | AC | 7 ms
5,376 KB |
testcase_30 | AC | 7 ms
5,376 KB |
testcase_31 | AC | 6 ms
5,376 KB |
testcase_32 | AC | 6 ms
5,376 KB |
testcase_33 | AC | 6 ms
5,376 KB |
testcase_34 | AC | 6 ms
5,376 KB |
testcase_35 | AC | 7 ms
5,376 KB |
testcase_36 | AC | 6 ms
5,376 KB |
testcase_37 | AC | 6 ms
5,376 KB |
testcase_38 | AC | 7 ms
5,376 KB |
testcase_39 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int T; cin>>T; while(T--){ int N; cin>>N; array<vector<bool>,3>D; for(int i=0;i<3;i++)D[i]=vector<bool>(N); array<bool,3>n={false,false,false}; for(int i=0;i<N;i++){ char c; int d; cin>>c>>d; switch(c){ case 'R':D[0][d-1]=true,n[0]=true;break; case 'G':D[1][d-1]=true,n[1]=true;break; case 'B':D[2][d-1]=true,n[2]=true;break; } } if(n[0]+n[1]+n[2]==1){ cout<<"YES\n"; continue; } if(n[0]+n[1]+n[2]==2){ if(!n[0])swap(D[0],D[2]); if(!n[1])swap(D[1],D[2]); bool ans=false; for(int i=0;i<N;i++){ if(D[0][i]&&D[1][i])ans=true; } cout<<(ans?"YES\n":"NO\n"); continue; } vector<int>p={0,1,2}; bool ans=false; do{ array<int,2>d={-1,-1}; for(int i=0;i<N;i++){ if(D[p[0]][i]&&D[p[1]][i]){ if(d[0]==-1)d[0]=i; else d[1]=i; } } for(int i=0;i<N;i++){ if(D[p[1]][i]&&D[p[2]][i]){ if(d[0]!=-1&&i!=d[0]||d[1]!=-1&&i!=d[1])ans=true; } } }while(next_permutation(p.begin(),p.end())); cout<<(ans?"YES\n":"NO\n"); } }