Please subscribe to the official Codeforces channel in Telegram via the link https://t.me/codeforces_official. ×

CrypticTaiga's blog

By CrypticTaiga, history, 4 years ago, In English

Problem — Problem

Submission — My Submission

I tried to solve the problem by taking the calculating the costs from all indexes starting from 0 upto n-1, and finally comparing the cost with the value of p. This is failing for large testcases (like number 5) and I am getting TLE.

Can you help me figure out how to make a dp array to save the precalculated costs for a prefix of length i at index i and then use to to calculate the cost for the prefix of size (i + 1). I tried but mine approach is not working correctly.

Thanks!

  • Vote: I like it
  • -1
  • Vote: I do not like it

| Write comment?