Submission #304411

#TimeUsernameProblemLanguageResultExecution timeMemory
304411MasalmahPacking Biscuits (IOI20_biscuits)C++14
Compilation error
0 ms0 KiB
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;

int count_tastiness(int x, vector<int> a) {
        const int N= 100001;
        int k= a.size();
        int dp[N]= {0};
        dp[0]= 1;
        for (int i= 0; i< k; i++) {
                int cnt= (1<< i);

                for (int kk= 0; kk< N; kk++) {
                        if (dp[kk]==(i+ 1)) {
                                for (int j= 1; j<= a[i]; j++){
                                       if(dp[kk+ (j* cnt)]== 0)
                                                dp[kk+ (j* cnt)]= i+ 2;
                                }
                        }
                }

        }

        int an= 0;
        for (int i= 0; i< N; i++) if (dp[i]) an++;
        return an;
}

Compilation message (stderr)

/tmp/ccFlPeUa.o: In function `main':
grader.cpp:(.text.startup+0x423): undefined reference to `count_tastiness(long long, std::vector<long long, std::allocator<long long> >)'
collect2: error: ld returned 1 exit status