zoukankan      html  css  js  c++  java
  • GCPC2018 Kitchen Cable Chaos(动态规划)

    题目描述

    You started your new project: installing a home automation system. You already bought all the components and in your local electronic shop you found a promotion set with a bunch of cables of different lengths. Now you want to connect your controller with your smart sandwich maker that is several meters away, but you are lacking a cable that is long enough.
    To solve this problem you have to connect some of your cables to form a long one. You measure the lengths of every cable you own. Exactly 5 centimeters of isolation are stripped on both ends of every cable. To connect two cables, you overlap and twist the stripped ends. It is enough for the cables to touch each other with an overlap of 0. You cannot have an overlap of more than 5 centimeters, but the connection quality increases with longer overlaps. On both ends – the controller and the sandwich maker – you also have 5 centimeters of stripped end, to which you have to connect your newly created cable in the same way. The connection quality of your link is determined by the smallest overlap used and your goal is to maximize this value.
    The problem would be really easy, but your perfectionist roommate hates unnecessary use of cables. Therefore, the cable has to form a straight line, without any loops or detours. And cutting the cables is no option, obviously.

    Figure K.1: Four cables of different lengths connect the controller with the sandwich maker, with different overlaps. Connection 1 has the maximal overlap, connection 2 the minimal overlap and all other connections are in between. The quality of this setup is 0.
    Considering all possible arrangements of cables, find the one with the best quality.

    输入

    The input consists of:
    •one line with two integers n, g (1 ≤ n ≤ 60, 11 ≤ g ≤ 1 000), the number of cables and the distance to be covered in centimeters, measured between the casings of the controller and the sandwich maker;
    •n lines, each with an integer d (11 ≤  d ≤ 1 000), giving the lengths of the cables (including the stripped ends).
    Each of the n cables can be used at most once.

    输出

    Output one number, the best achievable quality. The quality must be accurate up to a relative or absolute error (whichever is lower) of 10−7. If no arrangement fits your needs, output impossible.

    样例输入

    3 70
    20
    35
    50
    

    样例输出

    3.3333333




    #include "bits/stdc++.h"
    
    using namespace std;
    
    
    int dp[100][10000];
    int s[10000];
    
    int main() {
        int n, g;
        cin >> n >> g;
        int all = g + (n + 1) * 5;
        for (int i = 1; i <= n; i++) {
            cin >> s[i];
        }
        dp[0][10] = 1;
        for (int i = 1; i <= n; i++) {
            for (int j = n - 1; j >= 0; j--) {
                for (int k = 0; k + s[i] <= all; k++) {
                    dp[j + 1][k + s[i]] = dp[j + 1][k + s[i]] | dp[j][k];
                }
            }
        }
        double ans = -1;
        for (int i = 0; i <= n; i++) {
            for (int j = 0; j <= all; j++) {
                if (!dp[i][j]) continue;
                if (j < g || j > g + (i + 1) * 5) continue;
                ans = max(ans, double(j - g) / (i + 1));
            }
        }
        if (ans >= 0) printf("%.7f
    ", ans);
        else printf("impossible
    ");
        return 0;
    }
  • 相关阅读:
    数据库(SQL Server)管理数据库表~新奇之处
    疯狂C#~伴随着我的库存管理¥
    书中的银行,我们一起奋斗的C#,只因乐在其中~
    MyBatis的经典案例
    Spring MVC的配置文件(XML)的几个经典案列
    Spring MVC注解的一些案列
    WebService的一些案例
    AOP面向切面编程的四种实现
    Struts 2的OGNL的根对象
    Struts 2的拦截器(Interceptor)总结
  • 原文地址:https://www.cnblogs.com/albert-biu/p/9617252.html
Copyright © 2011-2022 走看看