이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <iostream>
using namespace std;
long long count_tastiness(long long x, std::vector<long long> a) {
int s = 0,k = a.size();
for(int i = 0; i < k; i++) s += a[i] * (1<<i);
int ans = 1;
for(int i = 1; i <= s/x; i++){
vector<long long> b = a;
bool go = true;
for(int j = 0; j < 20; j++){
if(i&(1<<j)){
for(int _ = 0; _ < x; _++){
int c = j, cant = 1;
while(c >= k){
c--;
cant *= 2;
}
while(c >= 0 && b[c] < cant){
cant -= b[c];
cant *= 2;
b[c] = 0;
c--;
}
if(c==-1) {
go = false;
break;
}
b[c] -= cant;
}
}
}
if(go) {
ans++;
}
}
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... |