zoukankan      html  css  js  c++  java
  • ZOJ

    Time Limit: 2000MS
    Memory Limit: 65536KB
    64bit IO Format: %lld & %llu

    Status

    Description

    When we are focusing on solving problems, we usually prefer to stay in front of computers rather than go out for lunch. At this time, we may call for food delivery.

    Suppose there are N people living in a straight street that is just lies on an X-coordinate axis. The ith person's coordinate is Xi meters. And in the street there is a take-out restaurant which has coordinates X meters. One day at lunchtime, each person takes an order from the restaurant at the same time. As a worker in the restaurant, you need to start from the restaurant, send food to the N people, and then come back to the restaurant. Your speed is V-1 meters per minute.

    You know that the N people have different personal characters; therefore they have different feeling on the time their food arrives. Their feelings are measured by Displeasure Index. At the beginning, the Displeasure Index for each person is 0. When waiting for the food, the ith person will gain BiDispleasure Index per minute.

    If one's Displeasure Index goes too high, he will not buy your food any more. So you need to keep the sum of all people's Displeasure Index as low as possible in order to maximize your income. Your task is to find the minimal sum of Displeasure Index.

    Input

    The input contains multiple test cases, separated with a blank line. Each case is started with three integers N ( 1 <= N <= 1000 ), V ( V > 0), X ( X >= 0 ), then N lines followed. Each line contains two integers Xi ( Xi >= 0 ), Bi ( Bi >= 0), which are described above.

    You can safely assume that all numbers in the input and output will be less than 231 - 1.

    Please process to the end-of-file.

    Output

    For each test case please output a single number, which is the minimal sum of Displeasure Index. One test case per line.

    Sample Input

    5 1 0
    1 1
    2 2
    3 3
    4 4
    5 5

    Sample Output

    55


    题意:在X-轴上有一个餐厅,以及有n个点要送外卖。餐厅坐标为x,工人的速度为V-1,也就是 1/v 米每分钟(不是v米每分钟)。给出n的点的x坐标和參数v。外卖没送到,客户就会不愉快,每一分钟的不愉快指数添加v。问怎么样的送货策略。使得全部客户的总不愉悦指数和最小。


    思路:区间DP。用一个数组 dp 维护。

    DP的思路就是。假设要訪问完 [i, j] ,那么它的子区间一定訪问完了。

    dp[i][j][0] 表示当前 [ i, j ] 区间内已经所有送餐完成,而且这个时刻工人位于区间左端。也就是坐标 i

    dp[i][j][1] 表示当前 [ i, j ] 区间内已经所有送餐完成,而且这个时刻工人位于区间又端。也就是坐标 j

    状态转移方程:

    以餐厅的位置 pos 为中间点,i 在餐厅pos位置的左边,j 在餐厅pos位置的右边。

    dp[i][j][0] = min(dp[i][j][0], dp[i+1][j][0]+(a[i+1].x-a[i].x)*(delay+a[i].v));

    这个方程里面,delay 表示区间 [i。j] 之外的全部点的v值之和,a[i+1].x-a[i].x 表示距离,dp[i+1][j][0]是已经求出来的子区间。加上(a[i+1].x-a[i].x)*(delay+a[i].v)),就得到 dp[i][j][0]。



    #include <cstdio>
    #include <iostream>
    #include <cstring>
    #include <cmath>
    #include <string>
    #include <algorithm>
    #include <queue>
    #include <stack>
    using namespace std;
    
    const int INF = 1<<29;
    const double PI = acos(-1.0);
    const double e = 2.718281828459;
    const double eps = 1e-8;
    const int MAXN = 1010;
    int dp[MAXN][MAXN][2];
    int sum[MAXN];
    struct node
    {
        int x;
        int v;
    } a[MAXN];
    
    int cmp(node x, node y)
    {
        return x.x < y.x;
    }
    
    int Delay(int l, int r)
    {
        if(l > r)
            return 0;
        return sum[r]-sum[l-1];
    }
    
    int main()
    {
        //freopen("in.txt", "r", stdin);
        //freopen("out.txt", "w", stdout);
        int n, v, x;
        while(scanf("%d %d %d", &n, &v, &x) != EOF)
        {
            for(int i = 1; i <= n; i++)
                scanf("%d %d", &a[i].x, &a[i].v);
            n++;
            a[n].x = x;
            a[n].v = 0;
            sort(a+1, a+1+n, cmp);
            sum[0] = 0;
            for(int i = 1; i <= n; i++)
                sum[i] = sum[i-1]+a[i].v;
            int pos = 1;
            for(int i = 1; i <= n; i++)
            {
                if(a[i].x == x)
                {
                    pos = i;
                    //cout<<pos<<endl;
                    break;
                }
            }
            for(int i = 1; i <= n; i++)
            {
                for(int j = 1; j <= n; j++)
                {
                    dp[i][j][0] = dp[i][j][1] = INF;
                }
            }
            dp[pos][pos][0] = dp[pos][pos][1] = 0;
            for(int i = pos; i >= 1; i--)
            {
                //i循环pos左边
                for(int j = pos; j <= n; j++)
                {
                    //j循环pos右边
                    int delay = Delay(1, i-1)+Delay(j+1, n);
                    if(i == j)
                        continue;
                    dp[i][j][0] = min(dp[i][j][0], dp[i+1][j][0]+(a[i+1].x-a[i].x)*(delay+a[i].v));
                    dp[i][j][0] = min(dp[i][j][0], dp[i+1][j][1]+(a[j].x-a[i].x)*(delay+a[i].v));
                    dp[i][j][1] = min(dp[i][j][1], dp[i][j-1][0]+(a[j].x-a[i].x)*(delay+a[j].v));
                    dp[i][j][1] = min(dp[i][j][1], dp[i][j-1][1]+(a[j].x-a[j-1].x)*(delay+a[j].v));
                }
            }
            printf("%d
    ", min(dp[1][n][0], dp[1][n][1])*v);
            //本题的v一定要留到后面来乘。中间DP的时候乘可能会溢出,导致wa
        }
        return 0;
    }
    
    


  • 相关阅读:
    [C++再学习系列] 深入new/delete:Operator new的全局重载
    [C++再学习系列] 函数模板和类模板
    [C++再学习系列] 模板函数的自定义点
    [C++再学习系列] STL容器删除操作总结
    How to create a sizelimited filesystem
    CodeSmith 破解和注册
    LINQ to SQL学习的几个问题
    SQLSERVER2005 分区表
    google工具栏和搜狗拼音叠加问题
    C#中构成函数重载有哪些条件和特征?
  • 原文地址:https://www.cnblogs.com/clnchanpin/p/6938201.html
Copyright © 2011-2022 走看看