//You can't fill the hole inside you with money, drugs and cars
#include<bits/stdc++.h>
using namespace std;
long long n, m;
vector<long long> v, a, b;
void create(long long st, long long en, vector<long long> &w){
long long sz = en - st;
w.push_back(0);
for(long long mask = 1; mask < (1 << sz); mask++)
w.push_back(w[mask - (mask & -mask)] + v[st + __builtin_ctz(mask)]);
}
long long inp(){
long long A;
cin >> A;
return A;
}
void input(){
cin >> n >> m;
for(long long i = 0; i < n; i++)
v.push_back(inp());
}
long long matches(long long p1 = 0, long long p2 = b.size() - 1, long long ans = 0){
sort(a.begin(), a.end());
sort(b.begin(), b.end());
for(; p2 > 0 and p1 < a.size(); p1++){
while(p2 >= 0 and a[p1] + b[p2] > m)
p2--;
ans += (p2 + 1);
}
return ans;
}
long long solve(){
create(0, n/2, a);
create(n/2, n, b);
return matches();
}
int main(){
input();
cout << solve();
}
Compilation message
bobek.cpp: In function 'long long int matches(long long int, long long int, long long int)':
bobek.cpp:32:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(; p2 > 0 and p1 < a.size(); p1++){
~~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
Output is correct |
2 |
Correct |
5 ms |
376 KB |
Output is correct |
3 |
Correct |
5 ms |
376 KB |
Output is correct |
4 |
Correct |
5 ms |
256 KB |
Output is correct |
5 |
Correct |
5 ms |
376 KB |
Output is correct |
6 |
Correct |
5 ms |
376 KB |
Output is correct |
7 |
Correct |
5 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
376 KB |
Output is correct |
2 |
Incorrect |
5 ms |
376 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
21 ms |
2032 KB |
Output is correct |
2 |
Incorrect |
64 ms |
5476 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
29 ms |
2920 KB |
Output is correct |
2 |
Correct |
23 ms |
2028 KB |
Output is correct |
3 |
Correct |
89 ms |
10588 KB |
Output is correct |
4 |
Correct |
5 ms |
256 KB |
Output is correct |
5 |
Correct |
9 ms |
1012 KB |
Output is correct |
6 |
Correct |
16 ms |
1648 KB |
Output is correct |
7 |
Correct |
16 ms |
1648 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
42 ms |
3560 KB |
Output is correct |
2 |
Correct |
85 ms |
6624 KB |
Output is correct |
3 |
Correct |
88 ms |
6624 KB |
Output is correct |
4 |
Correct |
5 ms |
380 KB |
Output is correct |
5 |
Correct |
40 ms |
6624 KB |
Output is correct |
6 |
Correct |
181 ms |
20816 KB |
Output is correct |
7 |
Incorrect |
81 ms |
6624 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
170 ms |
12756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
23 ms |
2024 KB |
Output is correct |
2 |
Correct |
56 ms |
5476 KB |
Output is correct |
3 |
Correct |
10 ms |
1012 KB |
Output is correct |
4 |
Incorrect |
10 ms |
1012 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
229 ms |
20816 KB |
Output is correct |
2 |
Incorrect |
24 ms |
2032 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |