제출 #335535

#제출 시각아이디문제언어결과실행 시간메모리
335535aanastasov비스킷 담기 (IOI20_biscuits)C++17
100 / 100
80 ms1004 KiB
#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 spareCount = 0;
    auto numWays = std::vector<int64_t>{1};
    for (int64_t i = 0; i < initialCount.size(); ++i) {
        if (initialCount[i] + spareCount >= numGroups) {
            spareCount = spareCount + initialCount[i] - numGroups;
            assert(spareCount >= 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);
            spareCount = 0;
        }
        spareCount >>= 1LL;
    }
    return numWays.back();
}
 

컴파일 시 표준 에러 (stderr) 메시지

biscuits.cpp: In function 'int64_t count_tastiness(int64_t, std::vector<long long int>)':
biscuits.cpp:11:27: warning: comparison of integer expressions of different signedness: 'int64_t' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   11 |     for (int64_t i = 0; i < initialCount.size(); ++i) {
      |                         ~~^~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...