제출 #319242

#제출 시각아이디문제언어결과실행 시간메모리
319242nekiPacking Biscuits (IOI20_biscuits)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #include "biscuits.h" #define loop(i, a, b) for(long long i=a;i<b;i++) #define pool(i, a, b) for(long long i=a-1;i>=b;i--) #define fore(i, a) for(auto&& i:a) #define fi first #define se second #define ps(a) push_back(a) #define pb(a) pop_back(a) #define sc scanf #define vc vector #define pa pair<ll, ll> #define ll long long #define lb lower_bound #define ub upper_bound #define all(a) a.begin(), a.end() #define llmax LLONG_MAX/2 #define llmin -LLONG_MAX/2 using namespace std; #define mn 1010 #define pa pair<ll, ll> #define ld long double ll n, a[100]; ll solve(ll x, ll ind){ //cout << ind << " "<<a[ind]<<endl; if(ind==n-1) return a[ind]/x + 1; a[ind+1]+=a[ind]/2; ll ret=solve(x, ind+1); a[ind+1]-=a[ind]/2; if(a[ind]>=x){ a[ind+1]+=(a[ind]-x)/2; ret+=solve(x, ind+1); a[ind+1]-=(a[ind]-x)/2; } return ret; }

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

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