This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
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;
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);
}
int cont(const pair<int, int>& value, const vector<pair<int, int>>& right){
int ans = 0;
int diff = K-value.first;
auto it = lower_bound(right.begin(), right.end(), diff, comparer()) - right.begin();
for(; it<(int)right.size(); it++)if(value.second <= right[it].second)
ans ++;
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];
vector<pair<int, int>> left, right;
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());
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);
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";
*/
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |