博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZOJ - 3469 Food Delivery(区间DP)
阅读量:5886 次
发布时间:2019-06-19

本文共 4000 字,大约阅读时间需要 13 分钟。

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

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 
#include
#include
#include
#include
#include
#include
#include
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<
<
= 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\n", min(dp[1][n][0], dp[1][n][1])*v); //本题的v一定要留到后面来乘,中间DP的时候乘可能会溢出,导致wa  } return 0;}

转载于:https://www.cnblogs.com/gavanwanggw/p/7274008.html

你可能感兴趣的文章
一个两年Java的面试总结
查看>>
转:React Native之旅01-创建项目
查看>>
软件工程项目组Z.XML会议记录 2013/11/27
查看>>
科学计算库学习报告
查看>>
软件测试 -- 软件测试的风险主要体现在哪里
查看>>
修改App.config中的appSettings
查看>>
JQuery选择器总结
查看>>
Ubuntu中无法update的解决办法
查看>>
仿射变换
查看>>
decltype类型指示符
查看>>
虹软ArcFace人脸识别 与 Dlib 人脸识别对比
查看>>
laravel 验证码使用示例
查看>>
IE开发人员工具无法使用
查看>>
shiro 认证问题
查看>>
分页器(自定制)
查看>>
Docker系列一:Docker的介绍和安装
查看>>
java中添加定时任务
查看>>
mysql innodb研究中一直不懂的东西(不断更新)
查看>>
洛谷 P1803 凌乱的yyy Label:Water 贪心
查看>>
3.4 函数式编程
查看>>