이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
vector<long long> powr;
long long count_tastiness(long long x,vector<long long> a) {
long long curr = 1;
for(int i=0;i<=20;i++){
powr.push_back(curr);
curr*=2;
}
reverse(a.begin(),a.end());
int res = 1;
for(int y=1;y<=100000;y++){
//if(y >= 6)break;
//cerr<<y<<": \n";
curr = y;
int pwr = a.size() -1;
for(auto i:a){
//cerr<<curr<<" "<<i<<" "<<pwr<<'\n';
int cnt = i;
while(cnt && curr >= powr[pwr]){
curr-=powr[pwr];
cnt--;
}
pwr--;
}
if(curr == 0)res++;
//cerr<<curr<<endl;
}
return res;
}
// run biscuits 03.in 03.out
# | 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... |