#include <bits/stdc++.h>
using namespace std;
struct comparer{
bool operator()(const pair<int, int>& a, const int& b){
return a.first < b;
}
bool operator()(const int& a, const pair<int, int>& b){
return a < b.first;
}
};
int n, N, K;
vector<int> v;
vector<int> h;
//O(2^N/2)
void jump(int last, int start, int i, int coins, vector<pair<int, int>>& sum){
if(i == n && start == -1) return;
if(i == n) return sum.push_back({coins, i == N ? start : last});
if(start == -1 || last <= h[i]) jump(h[i], start == -1 ? h[i] : start, i+1, coins + v[i], sum);
jump(last, start, i+1, coins, sum);
}
//O(log(2^N/2) + N)
int cont(const pair<int, int>& value, const vector<pair<int, int>>& right, const vector<vector<int>>& contH){
int ans = 0;
int diff = K-value.first;
auto it = lower_bound(right.begin(), right.end(), diff, comparer()) - right.begin();
for(int i=value.second; i < contH[it].size(); i++) ans += contH[it][i];
return ans;
}
signed main(){
cin.tie(0);
cin.sync_with_stdio(0);
cin >> N >> K;
v.resize(N);
h.resize(N);
for(int i=0; i<N; i++)
cin >> h[i] >> v[i];
int sub = 0;
map<int, int> remap;
for(auto i : h) remap[i]++;
for(auto &i : remap) i.second = sub++;
for(auto &i : h) i = remap[i];
vector<pair<int, int>> left, right;
left.reserve(1<<(N/2));
right.reserve(1<<(N/2));
n = N/2;
jump(-1, -1, 0, 0, left);
n = N;
jump(-1, -1, N/2, 0, right);
sort(left.begin(), left.end());
sort(right.begin(), right.end());
vector<int> tmp(sub, 0);
vector<vector<int>> contH(right.size());
for(int i=right.size()-1; i>=0; i--){
tmp[right[i].second]++;
contH[i] = tmp;
}
return 0;
int ans = 0;
for(auto i : left) if(i.first >= K) ans++;
for(auto i : right) if(i.first >= K) ans++;
for(auto i : left) ans += cont(i, right, contH);
cout << ans;
/*
cout << "\n\nDEBUG\n";
for(auto i : left) cout << i.first << " " << i.second << " "; cout << "\n";
for(auto i : right) cout << i.first << " " << i.second << " "; cout << "\n";
*/
}
Compilation message
san.cpp: In function 'int cont(const std::pair<int, int>&, const std::vector<std::pair<int, int> >&, const std::vector<std::vector<int> >&)':
san.cpp:31:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=value.second; i < contH[it].size(); i++) ans += contH[it][i];
~~^~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
23 ms |
11900 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
56 ms |
25564 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
151 ms |
66560 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |