Submission #1370530


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

#define forn(i, x, n) for (int i = int(x); i <= int(n); ++i)
#define for1(i, n, x) for (int i = int(n); i >= int(x); --i)
#define F first
#define S second
#define pb push_back

typedef long long ll;
typedef pair <int, int> pii;
typedef long double ld;
typedef vector <ll> vi;

const int N = 2e6 + 1;
const ll INF = 1e18 + 9;
const int B = 1e9 + 7;

int n;
ll a[N], p[N];

int main() {
    #ifdef black
    freopen("in", "r", stdin);
    #endif // black
    ios_base :: sync_with_stdio(0);
    cin.tie(0);

    cin >> n;
    forn(i, 1, n)
        cin >> a[i];
    sort(a + 1, a + 1 + n);
    forn(i, 1, n)
        p[i] = p[i - 1] + a[i];
    int ans = 1;
    for1(i, n - 1, 1) {
        if (p[i] * 2 < a[i + 1]) break;
        ++ans;
    }
    cout << ans << "\n";
    return 0;

    forn(i, 1, n) {
        bool shit = 0;
        for (int ptr = i; ptr < n;) {
            if (p[ptr] * 2 < a[ptr + 1]) {
                shit = 1;
                break;
            }
            int l = ptr + 1, r = n;
            while (l < r) {
                int m = (l + r + 1) / 2;
                if (p[ptr] * 2 >= p[m] - p[ptr]) l = m;
                else r = m - 1;
            }
            ptr = l + 1;
        }
        if (!shit) ++ans;
    }
    cout << ans << "\n";

    return 0;
}

Submission Info

Submission Time
Task B - Colorful Creatures
User sancho
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1394 Byte
Status AC
Exec Time 18 ms
Memory 5120 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 18 ms 5120 KB
in10.txt AC 8 ms 2688 KB
in11.txt AC 17 ms 5120 KB
in12.txt AC 13 ms 5120 KB
in13.txt AC 13 ms 5120 KB
in2.txt AC 18 ms 5120 KB
in3.txt AC 18 ms 5120 KB
in4.txt AC 18 ms 5120 KB
in5.txt AC 8 ms 2560 KB
in6.txt AC 15 ms 5120 KB
in7.txt AC 18 ms 5120 KB
in8.txt AC 15 ms 5120 KB
in9.txt AC 3 ms 2432 KB
sample1.txt AC 2 ms 2304 KB
sample2.txt AC 2 ms 2304 KB
sample3.txt AC 2 ms 2304 KB