이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <vector>
#include <algorithm>
#include <unordered_map>
using namespace std;
long long count_tastiness(long long x, vector<long long> a) {
unordered_map<long long,long long> mp;
mp[0] = 1;
for(int i = 0;i < (int)a.size() || (int)mp.size() > 1;i++){
unordered_map<long long,long long> tmp;
for(auto it2:mp){
pair<long long,long long> it = it2;
if(i < (int)a.size()){
it.first += a[i];
}
tmp[it.first / 2] += it.second;
if(it.first >= x){
tmp[(it.first - x) / 2] += it.second;
}
}
mp.swap(tmp);
}
return mp[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... |