标签:des style http os io strong for ar
Description
The input begins with a single positive integer on a line by itself indicating the number of the cases following, each of them as described below. This line is followed by a blank line, and there is also a blank line between two consecutive inputs.
The first line of input contains n the number of people at the picnic. n lines follow. The first line gives the weight of person 1; the second the weight of person 2; and so on. Each weight is an integer between 1 and 450. There are at most 100 people at the picnic.
For each test case, the output must follow the description below. The outputs of two consecutive cases will be separated by a blank line.
Your output will be a single line containing 2 numbers: the total weight of the people on one team, and the total weight of the people on the other team. If these numbers differ, give the lesser first.
1 3 100 90 200
190 200
题意:求将人分为两部分,人数相差不超过1个,求重量差最小的可能
思路:二维的背包会超时,可能姿势不对,学了别人的二进制标记,dp[i]表示重量为i时的人数有几个,用<<几位表示
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> typedef long long ll; using namespace std; const int maxn = 45005; const int inf = 0x3f3f3f3f; ll dp[maxn]; int w[110]; int n, sum, mid; int main() { int t; scanf("%d", &t); while (t--) { scanf("%d", &n); sum = 0; for (int i = 0; i < n; i++) { scanf("%d", &w[i]); sum += w[i]; } mid = (n+1) >> 1; memset(dp, 0, sizeof(dp)); dp[0] = 1; for (int i = 0; i < n; i++) for (int j = sum; j >= w[i]; j--) dp[j] |= dp[j-w[i]] << 1; int Min = 0, Max = inf; for (int i = 0; i <= sum; i++) for (int j = 0; j <= mid; j++) if (dp[i] & (1ll << j) && abs(2 * j - n) <= 1) if (abs(sum - 2 * i) < Max - Min) { Max = max(sum-i, i); Min = min(sum-i, i); } printf("%d %d\n", Min, Max); if (t) printf("\n"); } return 0; }
UVA - 10032 Tug of War (二进制标记+01背包),布布扣,bubuko.com
UVA - 10032 Tug of War (二进制标记+01背包)
标签:des style http os io strong for ar
原文地址:http://blog.csdn.net/u011345136/article/details/38459049