本文主要是介绍洛谷 P1909 [NOIP2016 普及组] 买铅笔,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目描述:
AC代码:
#include<iostream>using namespace std;int main()
{int n,res = 0;int min = 1e8 + 10;cin >> n;int num,price;for(int i=0;i<3;i++){cin >> num >> price;int temp = n % num;if(temp != 0){res = (n / num + 1) * price;if(min > res)min = res;}if(temp == 0){res = (n/num) * price;if(min > res)min = res;}}cout << min << endl;return 0;
}
这篇关于洛谷 P1909 [NOIP2016 普及组] 买铅笔的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!