Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

Блог пользователя newbie_forever_at_cp

Автор newbie_forever_at_cp, история, 7 лет назад, По-английски

hi every one. im having a doubt in codeforces problem 440 C. here is the link http://codeforces.com/problemset/problem/440/C. My approach was

A number x can be represented by having the number with only ones which is less than the given number. for eg if number is 40 one approach is taking 11. 

     Another is having the number with only ones which is greater than the given number. i.e. 111 for 40 then take absolute difference between the number and the given number i.e abs(11 – 40) = 29 and abs(111 – 40) which is 71.

     Now call the function again for the new n. in this case fun(29) and fun(49).

     Now added with the number of ones take the min of these two i.e min(fun(29) + 2, fun(71) + 3). that is the answer. Also if we can represent the number with the ones alone. for eg 11 then return 2 just. i.e without computing min(fun(11-11) + 2, fun(111- 11) + 3);

 But i got wrong answer in test 14. the input is 81924761239462. and the expected output is 321. And my output is 395. Can you please tell me what is wrong.

here is the link: http://ide.geeksforgeeks.org/kRLASR. And even in diagnostics it is not showing anything.

  • Проголосовать: нравится
  • -5
  • Проголосовать: не нравится

»
7 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

If you are downvoting, can you plz tell me why you are doing so

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Maybe it's because you're storing n as an int, maybe not.

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Have a look at my implementation of the same idea in a bit different way 32516193

  • »
    »
    7 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    yeah, Same. just you are inserted ones into a vector and took lb and up and multiplied it with the quotient of x/*lb; But what i did is suppose if x is 55, then i took 11 and subtracted 11 from 55 which is 44 and calling again. Anyways after calling the function for x/*lb times, then it is going to be the same. But i cant figure out why my implementation has gone wrong.

»
7 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Here is a much smaller test case. Try 80. The correct answer should be 11, while your program gives the answer 17.

This should be enough hint for you.