GCPC2018 Kitchen Cable Chaos(动态规划)

Posted albert-biu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
}

 














以上是关于GCPC2018 Kitchen Cable Chaos(动态规划)的主要内容,如果未能解决你的问题,请参考以下文章

(寒假GYM开黑)2018 German Collegiate Programming Contest (GCPC 18)

(寒假开黑gym)2017-2018 ACM-ICPC German Collegiate Programming Contest (GCPC 2017)

GCPC2017 题解

GCPC11j Time to live

Rails Action Cable:如何授权传入连接?

订阅 Action Cable 频道时如何设置参数