-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC_Smilo_and_Monsters.cpp
56 lines (44 loc) · 960 Bytes
/
C_Smilo_and_Monsters.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
RunAt - green
*/
#include <iostream>
#include <set>
#include <climits>
#include <cmath>
#include <numeric>
#include <map>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
typedef int long long ll;
#define p(a) cout << a << "\n";
#define p2(a,b) cout << a << " " << b << "\n";
#define YES cout << "YES" << "\n"
#define NO cout << "NO" << "\n"
const int N = 1e5+5;
const int MOD = 1e9+7;
void solve() {
ll n;
cin >> n;
vector<long long> vec(n);
for (auto &e: vec) cin >> e;
sort(vec.begin(), vec.end(), greater<int>());
vector<ll> prefix(n+1);
for (int i=0; i<n; i++) {
prefix[i+1] = prefix[i] + vec[i];
}
ll S = accumulate(vec.begin(), vec.end(), 0LL);
ll need = 0;
while (prefix[need] < S/2) need++;
ll total_moves = (S+1)/2 + need;
p(total_moves);
}
int main() {
cin.sync_with_stdio(0);
cin.tie(0);
int tests = 1;
cin >> tests;
while (tests--) solve();
return 0;
}