Submission #1359975


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using pii = pair<int, int>;
using ld = long double;
using pll = pair<ll, ll>;

const string N = "No\n";
const string Y = "Yes\n";

int main() {
#ifdef LOCAL
#endif
    ios_base::sync_with_stdio(0);
    cin.tie(nullptr);
    cout.setf(ios::fixed);
    cout.precision(12);
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++)
        cin >> a[i];
    sort(a.begin(), a.end());
    if (a.back() - a[0] > 1) {
        cout << N;
        return 0;
    }
    if (a.back() == a[0]) {
        if (a[0] == n - 1 || a[0] * 2 <= n)
            cout << Y;
        else
            cout << N;
        return 0;
    }
    int small = 0;
    int large = 0;
    for (int x : a)
        if (x == a[0])
            small++;
        else
            large++;
    int unique_large = a.back() - small;
    if (unique_large * 2 <= large && unique_large >= 1)
        cout << Y;
    else
        cout << N;
}

Submission Info

Submission Time
Task B - Colorful Hats
User kraskevich
Language C++14 (GCC 5.4.1)
Score 700
Code Size 1029 Byte
Status AC
Exec Time 13 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 700 / 700
Status
AC × 6
AC × 24
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 0_05.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 0_05.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
0_04.txt AC 2 ms 384 KB
0_05.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 9 ms 640 KB
1_03.txt AC 12 ms 640 KB
1_04.txt AC 12 ms 640 KB
1_05.txt AC 13 ms 640 KB
1_06.txt AC 11 ms 640 KB
1_07.txt AC 12 ms 640 KB
1_08.txt AC 9 ms 640 KB
1_09.txt AC 11 ms 640 KB
1_10.txt AC 10 ms 640 KB
1_11.txt AC 11 ms 640 KB
1_12.txt AC 13 ms 640 KB
1_13.txt AC 13 ms 640 KB
1_14.txt AC 11 ms 640 KB
1_15.txt AC 1 ms 256 KB
1_16.txt AC 1 ms 256 KB
1_17.txt AC 10 ms 640 KB