viper1234's blog

By viper1234, history, 17 months ago, In English

Can someone help me with this problem, any help will be appreciated.

Problem Statement: Bob wants to purchase N pens and so has prepared a list of shops that sell the pens. Each shop charges a different price per pen and has a limited quantity available in stock. Along with the price of the pen, each shop charges fixed delivery fees irrespective of how many pens are bought. Write a program to help Bob get the N pens as cheaply as possible.

Input Format: The first input line has two integers: N, the number of pens Bob needs, and S, the number of shops. Next, S lines have 3 integers, Q, P, and D, where Q is the stock of pens available at the shop, P is the price per pen and D is the delivery fee.

Output Format: A single line of output has an integer, which is the minimum amount Bob has to spend to purchase N pens.

Constraints

  • 1 <= N <=10000

  • 1 <= S <= 100

  • 0 <= 0 <= 10000

  • 0 <= P<= 10000

  • O<= D <= 1000000

  • N<= 01+Q2+...+Qs

Full text and comments »

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

By viper1234, history, 3 years ago, In English

Guys Checkout this problem-https://dmoj.ca/problem/coci13c2p5
I am stuck in that I don't know why mine solution is not working.
Soln link-https://ideone.com/Mbki4p

Can anyone please tell me the correct solution for this?

Full text and comments »

  • Vote: I like it
  • +3
  • Vote: I do not like it