結果
問題 | No.2148 ひとりUNO |
ユーザー | t33f |
提出日時 | 2022-12-08 23:14:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,642 bytes |
コンパイル時間 | 808 ms |
コンパイル使用メモリ | 87,444 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 18:02:44 |
合計ジャッジ時間 | 2,726 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 12 ms
5,248 KB |
testcase_27 | AC | 12 ms
5,248 KB |
testcase_28 | AC | 12 ms
5,248 KB |
testcase_29 | AC | 12 ms
5,248 KB |
testcase_30 | AC | 11 ms
5,248 KB |
testcase_31 | AC | 12 ms
5,248 KB |
testcase_32 | AC | 12 ms
5,248 KB |
testcase_33 | AC | 12 ms
5,248 KB |
testcase_34 | AC | 13 ms
5,248 KB |
testcase_35 | AC | 11 ms
5,248 KB |
testcase_36 | AC | 11 ms
5,248 KB |
testcase_37 | AC | 11 ms
5,248 KB |
testcase_38 | AC | 11 ms
5,248 KB |
testcase_39 | WA | - |
ソースコード
#include <numeric> #include <set> #include <array> #include <vector> #include <iostream> using namespace std; constexpr int R = 0, G = 1, B = 2; bool solve(int n, const vector<array<bool, 3>> &a) { bool col[3] = {}; vector<bool> num(n, false); for (int c = 0; c < 3; ++c) for (int i = 0; i < n; ++i) if (a[i][c]) col[c] = true, num[i] = true; if (accumulate(num.begin(), num.end(), 0) == 1) return true; set<int> s[2][3]; for (int c1 = 0; c1 < 3; ++c1) { for (int c2 = c1 + 1; c2 < 3; ++c2) { for (int i = 0; i < n; ++i) if (a[i][c1] && a[i][c2]) s[c1][c2].insert(i); } } if (const int ex_sum = int(col[0]) + int(col[1]) + int(col[2]); ex_sum == 1) return true; else if (ex_sum == 2) return !s[0][1].empty() || !s[0][2].empty() || !s[1][2].empty(); else { if (int(s[0][1].empty()) + int(s[0][2].empty()) + int(s[1][2].empty()) >= 2) return false; if (s[0][1].size() > 1 || s[0][2].size() > 1 || s[1][2].size() > 1) return true; set<int> t; if (!s[0][1].empty()) t.insert(*s[0][1].begin()); if (!s[0][2].empty()) t.insert(*s[0][2].begin()); if (!s[1][2].empty()) t.insert(*s[1][2].begin()); return t.size() > 1; } } int main() { int t; cin >> t; while (t--) { int n; cin >> n; vector<array<bool, 3>> a(n); for (int i = 0; i < n; ++i) { char c; int d; cin >> c >> d; a[d - 1][c == 'R' ? R : c == 'G' ? G : B] = true; } cout << (solve(n, a) ? "YES\n" : "NO\n"); } }