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;
    }
  • 相关阅读:
    sso单点登录
    mysql java写入时间少14小时
    mysql 时间
    mysql中timestamp的自动生成与更新
    centos7下用命令安装node&pm2
    腾讯蓝鲸资源分配
    Centos7 安装谷歌浏览器
    Ubuntu安装Apache 2.4.7常见问题解答
    Ubuntu常见服务启停
    LVM 'Can’t open /dev/sdb1 exclusively. Mounted filesystem?' Problem
  • 原文地址:https://www.cnblogs.com/albert-biu/p/9617252.html
Copyright © 2011-2022 走看看