Submission #1870457


Source Code Expand

#include <bits/stdc++.h>
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 LL INF = 1000 * 1000 * 1000 + 7;
const LL LINF = INF * (LL)INF;

const int MAX = 100100;

int A[MAX];

LL S[MAX];
LL DP[MAX];

int main()
{
	//freopen("in.txt", "r", stdin);
	//ios::sync_with_stdio(false); cin.tie(0);

	int n;
	scanf("%d", &n);

	FOR (i, 0, n)
	{
		scanf("%d", &A[i]);
	}

	sort(A, A+n);

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

	int res = 0;

	DP[n] = 0;
	RFOR(i, n, 0)
	{
		LL cur = S[i];

		if (cur >= DP[i+1]) res++;

		LL val = A[i];
		DP[i] = max(DP[i+1] - val, (val + 1) / 2);
	}

	cout<<res<<endl;


}

Submission Info

Submission Time
Task B - Colorful Creatures
User vjudge1
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1049 Byte
Status AC
Exec Time 21 ms
Memory 2304 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:35:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
                 ^
./Main.cpp:39:21: 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 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 21 ms 2304 KB
in10.txt AC 8 ms 1024 KB
in11.txt AC 19 ms 2176 KB
in12.txt AC 15 ms 2176 KB
in13.txt AC 15 ms 2176 KB
in2.txt AC 20 ms 2176 KB
in3.txt AC 20 ms 2176 KB
in4.txt AC 20 ms 2176 KB
in5.txt AC 8 ms 1024 KB
in6.txt AC 17 ms 2176 KB
in7.txt AC 20 ms 2176 KB
in8.txt AC 17 ms 2176 KB
in9.txt AC 3 ms 512 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB
sample3.txt AC 1 ms 256 KB