이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#define fs first
#define sc second
#define p_q priority_queue
using namespace std;
typedef long long ll;
ll count_tastiness(ll x, vector<ll> a) {
int n=a.size();
map<ll,ll> dp;
for(int i=0;i<60;i++){
a.push_back(0);
}
dp[0]=1;
for(int i=0;i<n+60;i++){
map<ll,ll> dp2;
for(auto h:dp){
dp2[h.fs/2+a[i]]+=h.sc;
if(h.fs>=x){
dp2[(h.fs-x)/2+a[i]]+=h.sc;
}
}
dp.swap(dp2);
}
ll ans=0;
for(auto h:dp){
ans+=h.sc;
}
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... |