I was solving Book Shop of CSES DP section.
- I am getting TLE even after multiple attempts, Can you tell me how to optimize my TOP-DOWN approach.
- I have tried replacing 2-d array with 2-d vector .
- I have also tried swapping the dimensions of dp array ( some caching thing ).
my code
Everything is fine. Just set dp[index][total] = ans before returning.
it is referenced with variable named ans,so i guess it should be fine, right??
The time constraints in the CSES Problem set are very tight! In some problems using
long long
instead ofint
might also give TLE. So its always better to use Iterative method rather than Recursive(for CSES)yeah i read it somewhere, so should i assume that it is unsolvable using TOP-DOWN approach(on CSES)??
It might work for some Problems I'm not too sure about that but I do remember trying top_down approach for some Problems and got TLE too! Not that the solution was wrong, but the time constraints were just too tight for recursive solutions!! So yeah if you want AC in CSES then you have to solve iteratively(atleast for most of them or even all of them)!
I kept on getting runtime error on my bottom up dp solution just because I used long long
It's actually Memory Limit Exceeded.
I know right! Same stuff happened to me and it was so annoying.
this worked for me...
bro can you paste the AC code (recursive one)
Sorry I haven't written recursive . But iterative one :
include<bits/stdc++.h>
using namespace std;
int mod = 1e9 +7; int main(){ int n,x; cin>>n>>x; pair<int,int> h[n];
cout<<dp[n][x]<<"\n"; }
I am using iterative way but still getting tle what could be the reason here is the code
include
include
using namespace std;
int main() { ios::sync_with_stdio(false); cin.tie(0);
}
Your code seems perfect to me. Did you find the error?
Yes.