Submission #1370341


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

#define forn(i, s, f) for(int i = (s); i <= (f); ++i)
#define for1(i, f, s) for(int i = (f); i >= (s); --i)
#define fora(i, x) for (auto i : x)
#define show(x) cout << #x << " = " << x << " ";
#define skip continue;
#define pb push_back
#define _1 first
#define _2 second

typedef long long ll;

const int N3 = 1e3 + 5;
const int N4 = 1e4 + 5;
const int N5 = 1e5 + 5;
const int N6 = 1e6 + 5;
const int N7 = 1e7 + 5;
const int N8 = 1e8 + 5;
const int N9 = 1e9 + 5;

int n, ans;

int a[N5], can[N5];

ll now[N5];

int main()
{
    cin >> n;
    forn (i, 1, n)
    {
        cin >> a[i];
    }
    sort(a + 1, a + n + 1);
    forn (i, 1, n)
    {
        now[i] += a[i] + now[i - 1];
    }
    for1 (i, n, 1)
    {
        if (i == n)
        {
            can[i] = 1;
            ++ans;
        }
        else
        {
            if (now[i] * 2 >= a[i + 1] && can[i + 1])
                can[i] = 1, ++ans;
        }
    }
    cout << ans;
}

Submission Info

Submission Time
Task B - Colorful Creatures
User Bruteforcer_
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1046 Byte
Status AC
Exec Time 61 ms
Memory 1792 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 19
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, in1.txt, in10.txt, in11.txt, in12.txt, in13.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
in1.txt AC 60 ms 1792 KB
in10.txt AC 19 ms 768 KB
in11.txt AC 49 ms 1664 KB
in12.txt AC 60 ms 1792 KB
in13.txt AC 59 ms 1792 KB
in2.txt AC 61 ms 1792 KB
in3.txt AC 60 ms 1792 KB
in4.txt AC 60 ms 1792 KB
in5.txt AC 24 ms 896 KB
in6.txt AC 40 ms 1408 KB
in7.txt AC 60 ms 1792 KB
in8.txt AC 39 ms 1408 KB
in9.txt AC 8 ms 384 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB
sample3.txt AC 1 ms 256 KB