本文主要是介绍AcWing 1353.滑雪场设计,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题解:滑雪场设计
- 题目描述
- 思路分析
- 代码实现
题目描述
题目链接:
https://www.acwing.com/problem/content/1355/
思路分析
代码实现
#include <iostream>
#include <cstring>
#include <algorithm>using namespace std;const int N = 1010;int n;
int h[N];int main()
{cin >> n;for (int i = 0; i < n; i ++ ) cin >> h[i];int res = 1e8;//最大值是1e7 多取一位for (int i = 0; i + 17 <= 100; i ++ )//枚举所有区间{int cost = 0, l = i, r = i + 17;//l是左区间 r是右区间for (int j = 0; j < n; j ++ )//修改所有山峰的代价之和if (h[j] < l) cost += (l - h[j]) * (l - h[j]);//在l 左区间else if (h[j] > r) cost += (h[j] - r) * (h[j] - r);//在r 右区间res = min(res, cost);}cout << res << endl;return 0;
}
这篇关于AcWing 1353.滑雪场设计的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!