• POJ 2923 Relocation


    Relocation

    Time Limit: 1000ms
    Memory Limit: 65536KB
    This problem will be judged on PKU. Original ID: 2923
    64-bit integer IO format: %lld      Java class name: Main

    Emma and Eric are moving to their new house they bought after returning from their honeymoon. Fortunately, they have a few friends helping them relocate. To move the furniture, they only have two compact cars, which complicates everything a bit. Since the furniture does not fit into the cars, Eric wants to put them on top of the cars. However, both cars only support a certain weight on their roof, so they will have to do several trips to transport everything. The schedule for the move is planed like this:

    1. At their old place, they will put furniture on both cars.
    2. Then, they will drive to their new place with the two cars and carry the furniture upstairs.
    3. Finally, everybody will return to their old place and the process continues until everything is moved to the new place.

    Note, that the group is always staying together so that they can have more fun and nobody feels lonely. Since the distance between the houses is quite large, Eric wants to make as few trips as possible.

    Given the weights wi of each individual piece of furniture and the capacities C1 and C2 of the two cars, how many trips to the new house does the party have to make to move all the furniture? If a car has capacity C, the sum of the weights of all the furniture it loads for one trip can be at most C.

     

    Input

    The first line contains the number of scenarios. Each scenario consists of one line containing three numbers nC1 and C2. C1 and C2 are the capacities of the cars (1 ≤ Ci ≤ 100) andn is the number of pieces of furniture (1 ≤ n ≤ 10). The following line will contain n integers w1, …, wn, the weights of the furniture (1 ≤ wi ≤ 100). It is guaranteed that each piece of furniture can be loaded by at least one of the two cars.

    Output

    The output for every scenario begins with a line containing “Scenario #i:”, where i is the number of the scenario starting at 1. Then print a single line with the number of trips to the new house they have to make to move all the furniture. Terminate each scenario with a blank line.

    Sample Input

    2
    6 12 13
    3 9 13 3 10 11
    7 1 100
    1 2 33 50 50 67 98

    Sample Output

    Scenario #1:
    2
    
    Scenario #2:
    3

    Source

     
    解题:状压后进行01背包。。
     
    先把所有一次可以两辆车能够装完的子状态
     
    然后对这些状态进行01背包。。
     
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 using namespace std;
     5 int st[1<<13],tot,n,c1,c2;
     6 int d[13],dp[1<<13],dp2[200];
     7 bool check(int x) {
     8     int sum = 0;
     9     memset(dp2,0,sizeof dp2);
    10     for(int i = 0; i < n; ++i) {
    11         if(x & (1<<i)) {
    12             sum += d[i];
    13             for(int j = c1; j >= d[i]; j--)
    14                 dp2[j] = max(dp2[j],dp2[j - d[i]] + d[i]);
    15         }
    16     }
    17     return c2 >= sum - dp2[c1];
    18 }
    19 int main() {
    20     int T,cs = 1;
    21     scanf("%d",&T);
    22     while(T--) {
    23         scanf("%d %d %d",&n,&c1,&c2);
    24         for(int i = 0; i < n; ++i)
    25             scanf("%d",d+i);
    26         for(int i = tot = 0; i < (1<<n); ++i)
    27             if(check(i)) st[tot++] = i;
    28         memset(dp,0x3f,sizeof dp);
    29         dp[0] = 0;
    30         for(int i = 0; i < tot; ++i)
    31             for(int j = ((1<<n)-1)&(~st[i]); j >= 0; --j)
    32                 dp[j|st[i]] = min(dp[j]+1,dp[j|st[i]]);
    33         printf("Scenario #%d:
    %d
    ",cs++,dp[(1<<n)-1]);
    34         if(T) puts("");
    35     }
    36     return 0;
    37 }
    View Code
  • 相关阅读:
    如何输出高精度时间差
    GetThreadTimes获取其它线程cpu时间
    12-Python基础之类与面向对象
    10-Python函数之递归
    09-Python基础之内置函数与匿名函数
    08-Python基础之迭代器与生成器
    07-Python基础之装饰器
    06-Python基础之函数进阶(嵌套,作用域)
    05-Python基础之函数基础
    04-Python基础之文件操作基础
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4437421.html
Copyright © 2020-2023  润新知