Submission #1870503


Source Code Expand

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <sstream>
#include <iomanip>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cctype>
#include <cstring>
#include <vector>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <map>
#include <set>
#include <algorithm>
#include <iterator>
#include <bitset>
#include <ctime>
#include<complex>
using namespace std;

#define FOR(i,a,b) for (int i = (a); i < (b); i++)
#define RFOR(i,b,a) for (int i = (b)-1; i >= (a); i--)
#define ITER(it,a) for (__typeof(a.begin()) it = a.begin(); it != a.end(); it++)
#define FILL(a,value) memset(a, value, sizeof(a))

#define SZ(a) (int)a.size()
#define ALL(a) a.begin(), a.end()
#define PB push_back
#define MP make_pair

typedef long long LL;
typedef vector<int> VI;
typedef pair<int, int> PII;

const double PI = acos(-1.0);
const int INF = 1000 * 1000 * 1000 + 7;
const LL LINF = INF * (LL)INF;

const int MAX = 100000 + 47;
const int MOD = 1000 * 1000 * 1000 + 7;

int A[MAX];
LL P[MAX];

int main()
{
	//freopen("in.txt", "r", stdin);
	//freopen("out.txt", "w", stdout);
	ios::sync_with_stdio(false); cin.tie(0);
	int n;
	cin >> n;
	LL s = 0;
	FOR(i, 0, n)
	{
		cin >> A[i];
	}

	sort(A, A + n);
	FOR(i, 0, n)
	{
		P[i] = A[i];
		if (i) P[i] += P[i - 1];
	}

	int ind = -1;
	RFOR(i, n - 1, 0)
	{
		if (P[i] * 2 < A[i + 1])
		{
			ind = i;
			break;
		}
	}

	cout << n - ind - 1 << endl;
}

Submission Info

Submission Time
Task B - Colorful Creatures
User vjudge1
Language C++14 (Clang 3.8.0)
Score 400
Code Size 1426 Byte
Status AC
Exec Time 115 ms
Memory 1408 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 114 ms 1408 KB
in10.txt AC 35 ms 768 KB
in11.txt AC 94 ms 1408 KB
in12.txt AC 107 ms 1408 KB
in13.txt AC 107 ms 1408 KB
in2.txt AC 113 ms 1408 KB
in3.txt AC 113 ms 1408 KB
in4.txt AC 114 ms 1408 KB
in5.txt AC 44 ms 768 KB
in6.txt AC 78 ms 1408 KB
in7.txt AC 115 ms 1408 KB
in8.txt AC 78 ms 1408 KB
in9.txt AC 15 ms 384 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB
sample3.txt AC 1 ms 256 KB