이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<biscuits.h>
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define MOD (1000000000+7)
#define MOD1 (998244353)
#define pb push_back
#define all(x) x.begin(), x.end()
#define en cout << '\n'
const int N = 1e6+100, M = 1e5+10, K = 22;
ll count_tastiness(ll x, vector<ll> a){
vector<ll> p;
p.pb(0);
ll ans = 1;
for(int i = 0; i < 100; ++i) a.pb(0);
int n = a.size();
for(int i = 0; i < n; ++i){
ans += int(p.size()) - (lower_bound(all(p), x - a[i]) - p.begin());
vector<ll> np, np2;
for(auto y: p){
np.pb((y+a[i])>>1);
if(y+a[i]-x >= 0) np2.pb((y+a[i]-x)>>1);
}
p.clear();
merge(all(np), all(np2), back_inserter(p));
// for(auto f: p) cout << f << ' ';
// en;
// cout << ans << '\n';
}
return ans;
}
# | 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... |