Submission #370080

#TimeUsernameProblemLanguageResultExecution timeMemory
370080MilosMilutinovic비스킷 담기 (IOI20_biscuits)C++14
Compilation error
0 ms0 KiB
#include "biscuits.h" #include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back const int N=62; ll x; map<ll, ll> dp; vector<ll> pref; ll Solve(ll n) { if(n<=0) return 0LL; if(n==1) return 1LL; if(dp.find(n)!=dp.end()) return dp[n]; ll i=__lg(n-1); ll ans=Solve((ll)(1<<i))+Solve(min(n,pref[i]/x+1)-(ll)(1<<i)); dp[n]=ans; return dp[n]; } ll count_tastiness(ll X, vector<ll> a) { x=X; dp.clear(); pref.clear(); for(ll i=0; i<(int)a.size(); ++i) { if(i>0) a[i]=a[i-1]+a[i]*(ll)(1<<i); pref.pb(a[i]); } for(int i=(int)ans.size(); i<61; ++i) pref.pb(pref.back()); return Solve(pref.back()+1); }

Compilation message (stderr)

biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:35:17: error: 'ans' was not declared in this scope; did you mean 'abs'?
   35 |  for(int i=(int)ans.size(); i<61; ++i)
      |                 ^~~
      |                 abs