P2085 最小函数值

Posted thjkhdf12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P2085 最小函数值相关的知识,希望对你有一定的参考价值。

技术图片
 1 #include<iostream>
 2 using namespace std;
 3 
 4 int n, m;
 5 int a[10010], b[10010], c[10010];
 6 int x[10010];
 7 
 8 int main()
 9 {
10     cin >> n >> m;
11     for (int i = 1; i <= n; i++)
12     {
13         cin >> a[i] >> b[i] >> c[i];
14         x[i] = 1;
15     }
16     int s = 0;
17     for (int i = 1; i <= m; i++)
18     {
19         int miny = 0x3f3f3f3f;
20         int t = 1;
21         for (int j = 1; j <= n; j++)
22         {
23             if (a[j] * x[j] * x[j] + b[j] * x[j] + c[j] < miny)
24             {
25                 miny = a[j] * x[j] * x[j] + b[j] * x[j] + c[j];
26 
27                 t = j;
28 
29             }
30         }
31         s = miny;
32         cout << miny << " ";
33         x[t]++;
34     }
35     return 0;
36 }
View Code

 

以上是关于P2085 最小函数值的主要内容,如果未能解决你的问题,请参考以下文章

?Luogu P2085 最小函数值

P2085 最小函数值

最小函数值 洛谷P2085

P2085 最小函数值

P2085 最小函数值 (堆)

题解 P2085 最小函数值