搬寝室
Problem Description
搬寝室是很累的,xhd深有体会.时间追述2006年7月9号,那天xhd迫于无奈要从27号楼搬到3号楼,因为10号要封楼了.看着寝室里的n件物品,xhd开始发呆,因为n是一个小于2000的整数,实在是太多了,于是xhd决定随便搬2*k件过去就行了.但还是会很累,因为2*k也不小是一个不大于n的整数.幸运的是xhd根据多年的搬东西的经验发现每搬一次的疲劳度是和左右手的物品的重量差的平方成正比(这里补充一句,xhd每次搬两件东西,左手一件右手一件).例如xhd左手拿重量为3的物品,右手拿重量为6的物品,则他搬完这次的疲劳度为(6-3)^2 = 9.现在可怜的xhd希望知道搬完这2*k件物品后的最佳状态是怎样的(也就是最低的疲劳度),请告诉他吧.
Input
每组输入数据有两行,第一行有两个数n,k(2<=2*k<=n<2000).第二行有n个整数分别表示n件物品的重量(重量是一个小于2^15的正整数).
Output
对应每组输入数据,输出数据只有一个表示他的最少的疲劳度,每个一行.
Sample Input
2 11 3
Sample Output
4
Author
xhd
Source
题目类型:线性DP+贪心
算法分析:由于要求解的是重量差的平方,所以一个显然的贪心策略是先将所有的物品按照重量从小到大排序,让相邻的物品的重量差尽量小。然后用dp[i][j]表示取前i个物品组成j对时所具有的最小疲劳度。状态转移方程为:dp[i][j] = min (dp[i-2][j-1] + (a[i] - a[i-1]) * (a[i] - a[i-1]), dp[i-1][j])
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
#include <set> #include <bitset> #include <list> #include <map> #include <stack> #include <queue> #include <deque> #include <string> #include <vector> #include <ios> #include <iostream> #include <fstream> #include <sstream> #include <iomanip> #include <algorithm> #include <utility> #include <complex> #include <numeric> #include <functional> #include <cmath> #include <ctime> #include <climits> #include <cstdarg> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cassert> using namespace std; const int INF = 0x7FFFFFFF; const int MOD = 7; const double EPS = 1e-10; const double PI = 2 * acos (0.0); const int maxn = 2000 + 66; int a[maxn], dp[maxn][maxn]; int main() { // ifstream cin ("aaa.txt"); // freopen ("aaa.txt", "r", stdin); int n, k; while (cin >> n >> k) { for (int i = 1; i <= n; i++) cin >> a[i]; sort (a + 1, a + 1 + n); for (int i = 0; i <= n; i++) for (int j = 1; j <= k; j++) dp[i][j] = INF; dp[0][0] = 0; for(int i = 2; i <= n; i++) { for (int j = 1; j * 2 <= i; j++) dp[i][j] = min (dp[i-2][j-1] + (a[i] - a[i-1]) * (a[i] - a[i-1]), dp[i-1][j]); } cout << dp[n][k] << endl; } return 0; } |
- « 上一篇:hdu1395
- hdu1573:下一篇 »