제출 #996353

#제출 시각아이디문제언어결과실행 시간메모리
996353Essa2006비스킷 담기 (IOI20_biscuits)C++14
21 / 100
45 ms432 KiB
#include "biscuits.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define FF first
#define SS second
#define all(a) a.begin(), aa.end()
#define mod (ll)(1000000007)

ll count_tastiness(ll n, vector<ll> Freq) {
    if (n == 1) {
        ll ans = 1, cur = 1, strt = 0;
        while (Freq.size() < 61) {
            Freq.push_back(0);
        }
        for (int j = 0; j < 61; j++) {
            if (Freq[j] & 1) {
                cur += (1LL << (j - strt));
            }
            ll move = Freq[j] / 2;
            if (move == 0) {
                ans *= cur;
                cur = 1;
                strt = j + 1;
            }
            if (j != Freq.size() - 1)
                Freq[j + 1] += move;
        }
        ans *= cur;
        return ans;
    }
    int sum = 100000 / n;
    int ans = 0;
    for (int i = 0; i <= sum; i++) {
        vector<ll> Freq2 = Freq;
        while(Freq2.size() < 18) {
            Freq2.push_back(0);
        }
        int j = 0;
        bool cant = 0;
        while (j < 18) {
            if ((1 << j) & i) {
                if (Freq2[j] < n) {
                    cant = 1;
                    break;
                }
                Freq2[j] -= n;
            }
            if (j != Freq2.size() - 1) {
                Freq2[j + 1] += Freq2[j] / 2;
            }
            j++;

        }


        ans += !cant;
    }

    return ans;
}

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

biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:27:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   27 |             if (j != Freq.size() - 1)
      |                 ~~^~~~~~~~~~~~~~~~~~
biscuits.cpp:50:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   50 |             if (j != Freq2.size() - 1) {
      |                 ~~^~~~~~~~~~~~~~~~~~~
#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...