QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#66521#3025. AssimilationyoIAAC ✓237ms14360kbC++141.1kb2022-12-08 20:49:252022-12-08 20:49:26

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-12-08 20:49:26]
  • 评测
  • 测评结果:AC
  • 用时:237ms
  • 内存:14360kb
  • [2022-12-08 20:49:25]
  • 提交

answer

#include <bits/stdc++.h>
#define forn(i,s,t) for(int i=(s); i<=(t); ++i)
#define form(i,s,t) for(int i=(s); i>=(t); --i)
#define rep(i,s,t) for(int i=(s); i<(t); ++i)
using namespace std;
typedef double f64;
typedef long long i64;
typedef unsigned long long u64;
const int N = 2e5 + 3, M = 1e6 + 4, Mod = 998244353;
int n; i64 k, a[N];
multiset<i64> S, T;
inline void init() {
	S.clear(), T.clear();
}
inline void solve() {
	cin >> n >> k;
	forn (i, 1, n) cin >> a[i], S.insert(a[i]);
	int ans = 0;
	while (!S.empty()) {
		if (k >= *S.rbegin()) break ;
		auto it = S.upper_bound(k);
		if (it == S.begin()) break ;
		--it;
		ans ++ ;
		k += *it, S.erase(it);
	}
	if (k < *S.rbegin()) {
		return cout << "-1\n", void();
	}
	while (!S.empty()) {
		while (!T.empty() && k < *S.rbegin()) {
			k += *(--T.end());
			T.erase(--T.end());
			ans ++ ;
		}
		k -= *S.rbegin();
		T.insert(*S.rbegin() * 2), S.erase(--S.end());
	}
	cout << ans << '\n';
}
int z;
int main() {
	ios::sync_with_stdio(false);
	cin.tie(0), cout.tie(0);
	cin >> z;
	while (z--) init(), solve();
	return 0;
} 
/*
1
9 1
1 1 2 1 1 1 1 1 1
*/

詳細信息

Test #1:

score: 100
Accepted
time: 198ms
memory: 14280kb

input:

29
9 1
1 1 2 1 1 1 1 1 1
4 1
3 2 1 1
5 316660370
269357435 105688553 346785866 295093544 181703417
6 43402885
39947441 27068237 43810814 44913378 40095941 34779892
22 319594
3815194 3056481 6593888 7315914 6593888 4794774 2561877 5256242 4920603 5256242 3606645 864746 1594265 1235578 2361430 2277526...

output:

4
2
2
3
-1
10621
4
-1
7
5385
8
2
-1
5
6264
3
0
-1
124764
5
-1
7
10940
1
3
100000
5
-1
-1

result:

ok 29 lines

Test #2:

score: 0
Accepted
time: 237ms
memory: 14360kb

input:

30
1537 2
5 6 3 3 6 5 3 5 5 5 6 5 5 6 4 6 6 6 4 3 5 5 5 6 4 6 2 3 4 5 5 5 5 5 6 6 6 4 4 4 2 6 6 5 3 6 5 6 6 5 6 5 4 3 5 6 4 3 5 3 6 4 5 6 4 1 4 6 4 5 2 4 3 4 6 6 5 5 5 6 6 5 5 5 6 4 5 6 6 6 5 5 5 3 3 2 4 6 3 5 4 4 6 6 6 5 5 6 4 4 6 6 6 6 4 6 6 3 4 5 5 3 4 5 4 6 5 5 6 5 6 6 3 3 6 5 4 6 4 6 6 4 5 3 2 ...

output:

629
22
1452
10
2121
5094
6
1135
7123
2140
4
916
1802
1237
5
6
1498
262
115823
1223
11
1032
844
13
1899
4
1212
17
-1
1797

result:

ok 30 lines

Test #3:

score: 0
Accepted
time: 188ms
memory: 12532kb

input:

30
11 40454552
9677001 192936684 252254034 192936684 37357273 9156546 74500194 116624778 13650360 2174119 13650360
27 1
3 2 3 1 3 5 3 5 1 1 1 1 1 1 4 4 1 1 1 2 1 3 3 1 3 2 4
11 72578887
172937772 206562668 87600829 84557056 103901588 148396091 92438037 215698807 125600579 216304481 191851963
5 1
1 2...

output:

4
9
-1
3
19
-1
5
9
4
4
18
14
5
5
83242
7
4
-1
6
22
5
3
17
-1
2
7
22
158159
-1
12

result:

ok 30 lines