# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
335532 | aanastasov | 비스킷 담기 (IOI20_biscuits) | C++17 | 93 ms | 1004 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <cassert>
typedef long long int64_t;
int64_t count_tastiness(int64_t numGroups, std::vector<int64_t> initialCount) {
while (initialCount.size() < 62) initialCount.push_back(0);
int64_t extraQty = 0;
auto numWays = std::vector<int64_t>{1};
for (int64_t i = 0; i < initialCount.size(); ++i) {
if (initialCount[i] + (extraQty >> i) >= numGroups) {
extraQty += initialCount[i] << i;
extraQty -= numGroups << i;
assert(extraQty >= 0);
numWays.push_back(numWays.back() * 2);
} else {
auto counts = std::vector<int64_t>(initialCount.begin(), initialCount.end());
int64_t maxPossible = 0;
for (int64_t j = i; j >= 0; --j) {
int64_t availableQty = 0;
for (int64_t jj = 0; jj < j + 1; ++jj)
availableQty += counts[jj] << jj;
if ((availableQty >> j) < numGroups)
continue;
int64_t borrowedQty = numGroups;
for (int64_t jj = j; jj >= 0; --jj) {
int64_t takeCount = std::min(borrowedQty, counts[jj]);
counts[jj] -= takeCount;
borrowedQty = (borrowedQty - takeCount) * 2;
}
maxPossible |= 1LL << j;
}
int64_t curWays = 0;
for (int64_t j = 0; j < i + 1; ++j)
if (((maxPossible + 1) & (1LL << j)) > 0)
curWays += numWays[j];
numWays.push_back(curWays);
extraQty = 0;
}
}
return numWays.back();
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |