Submission #1360811


Source Code Expand

#include <bits/stdc++.h>
#define maxN 100002
using namespace std;

//FILE *fin = freopen("b.in", "r", stdin);

int n, a[maxN];

int main()
{
    scanf("%d", &n);
    for (int i = 1; i <= n; ++ i)
        scanf("%d", &a[i]);
    sort(a + 1, a + n + 1);
    if (a[1] == a[n])
    {
        if (a[1] <= n / 2 || a[1] == n - 1)
            printf("Yes\n");
        else
            printf("No\n");
    }
    else
    {
        if (a[n] - a[1] > 1)
            printf("No\n");
        else
        {
            int cntMax = 0;
            for (int i = 1; i <= n; ++ i)
                if (a[i] == a[n])
                    ++ cntMax;
            if (n - cntMax >= a[n])
            {
                printf("No\n");
                return 0;
            }
            if (a[n] <= n / 2)
                printf("Yes\n");
            else
            {
                if (a[1] <= n / 2 && cntMax * 2 <= n)
                    printf("Yes\n");
                else
                    printf("No\n");
            }
        }
    }
    return 0;
}

Submission Info

Submission Time
Task B - Colorful Hats
User ak47
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1090 Byte
Status WA
Exec Time 12 ms
Memory 640 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:11:20: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
                    ^
./Main.cpp:13:27: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &a[i]);
                           ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 700
Status
AC × 5
WA × 1
AC × 21
WA × 3
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 WA 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 1 ms 256 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 10 ms 640 KB
1_03.txt AC 12 ms 640 KB
1_04.txt AC 12 ms 640 KB
1_05.txt AC 12 ms 640 KB
1_06.txt AC 12 ms 640 KB
1_07.txt AC 12 ms 640 KB
1_08.txt AC 10 ms 640 KB
1_09.txt AC 12 ms 640 KB
1_10.txt AC 10 ms 640 KB
1_11.txt WA 12 ms 640 KB
1_12.txt AC 12 ms 640 KB
1_13.txt WA 12 ms 640 KB
1_14.txt AC 12 ms 640 KB
1_15.txt AC 1 ms 256 KB
1_16.txt AC 1 ms 256 KB
1_17.txt AC 12 ms 640 KB