이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
using namespace std;
map<pair<int, long long>, long long> f;
vector<long long> arr;
vector<long long> sums;
long long solve3(long long x, int pos, long long sub) {
if (pos == -1) return sub == 0;
if (f.count({pos, sub})) return f[{pos, sub}];
long long cur = pos < (int) arr.size() ? arr[pos] : 0;
long long ret = 0;
if ((1LL << pos) <= (sums[pos] - sub) / x) {
long long what = solve3(x, pos - 1, max(0LL, sub + x * (1LL << pos) - (1LL << pos) * cur));
ret += what;
if (what == (1LL << pos)) {
ret += what;
return f[{pos, sub}] = ret;
}
}
ret += solve3(x, pos - 1, max(0LL, sub - (1LL << pos) * cur));
return f[{pos, sub}] = ret;
}
long long count_tastiness(long long x, vector<long long> a) {
f.clear(); sums.clear();
long long s = 0, pw = 1;
for (int i = 0; i < 60; ++i) {
if (i < (int) a.size())
s += pw * a[i];
pw <<= 1;
sums.push_back(s);
}
arr = a;
return solve3(x, 59, 0);
}
# | 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... |