前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >3892: [Usaco2014 Dec]Marathon

3892: [Usaco2014 Dec]Marathon

作者头像
HansBug
发布2018-04-10 17:11:27
5970
发布2018-04-10 17:11:27
举报
文章被收录于专栏:HansBug's LabHansBug's Lab

3892: [Usaco2014 Dec]Marathon

Time Limit: 10 Sec  Memory Limit: 128 MB

Submit: 169  Solved: 100

[Submit][Status][Discuss]

Description

Unhappy with the poor health of his cows, Farmer John enrolls them in an assortment of different physical fitness activities. His prize cow Bessie is enrolled in a running class, where she is eventually expected to run a marathon through the downtown area of the city near Farmer John's farm! The marathon course consists of N checkpoints (3 <= N <= 500) to be visited in sequence, where checkpoint 1 is the starting location and checkpoint N is the finish. Bessie is supposed to visit all of these checkpoints one by one, but being the lazy cow she is, she decides that she will skip up to K checkpoints (K < N) in order to shorten her total journey. She cannot skip checkpoints 1 or N, however, since that would be too noticeable. Please help Bessie find the minimum distance that she has to run if she can skip up to K checkpoints. Since the course is set in a downtown area with a grid of streets, the distance between two checkpoints at locations (x1, y1) and (x2, y2) is given by |x1-x2| + |y1-y2|.

在二维平面上有N个点,从(x1,y1)到(x2,y2)的代价为|x1-x2|+|y1-y2|。

求从1号点出发,按从1到N的顺序依次到达每个点的最小总代价。

你有K次机会可以跳过某个点,不允许跳过1号点或N号点。

Input

The first line gives the values of N and K. The next N lines each contain two space-separated integers, x and y, representing a checkpoint (-1000 <= x <= 1000, -1000 <= y <= 1000). The checkpoints are given in the order that they must be visited. Note that the course might cross over itself several times, with several checkpoints occurring at the same physical location. When Bessie skips such a checkpoint, she only skips one instance of the checkpoint -- she does not skip every checkpoint occurring at the same location.

Output

Output the minimum distance that Bessie can run by skipping up to K checkpoints. In the sample case shown here, skipping the checkpoints at (8, 3) and (10, -5) leads to the minimum total distance of 4.

Sample Input

5 2 0 0 8 3 1 1 10 -5 2 2

Sample Output

4

HINT

Source

Silver

题解:一道神奇的DP,b[i,j]代表从1到i,共计跳跃了j次不难得出递推式

\(b[i,j]=min(b[i-k-1,j-k]+dis(i-k-1,i))\)

,然后\(O\left(N{M}^{2} \right)\)瞎搞万事

代码语言:javascript
复制
 1 /**************************************************************
 2     Problem: 3892
 3     User: HansBug
 4     Language: Pascal
 5     Result: Accepted
 6     Time:808 ms
 7     Memory:4148 kb
 8 ****************************************************************/
 9  
10 var
11    i,j,k,l,m,n:longint;
12    a:array[0..1000,1..2] of longint;
13    b:array[0..1000,0..1000] of longint;
14 function dis(x,y:longint):longint;inline;
15          begin
16               exit(abs(a[x,1]-a[y,1])+abs(a[x,2]-a[y,2]));
17          end;
18 function min(x,y:longint):longint;inline;
19          begin
20               if x<y then min:=x else min:=y;
21          end;
22 begin
23      readln(n,m);
24      for i:=1 to n do readln(a[i,1],a[i,2]);
25      fillchar(b,sizeof(b),-1);
26      b[1,0]:=0;
27      for i:=2 to n do
28          begin
29               for j:=0 to min(i-2,m) do
30                     begin
31                          b[i,j]:=maxlongint;
32                          for k:=0 to j do
33                              if b[i-k-1,j-k]<>-1 then
34                                 begin
35                                      b[i,j]:=min(b[i,j],b[i-k-1,j-k]+dis(i-k-1,i));
36                                 end;
37                     end;
38          end;
39      writeln(b[n,min(n-2,m)]);
40 end.
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015-04-05 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 3892: [Usaco2014 Dec]Marathon
  • Description
  • Input
  • Output
  • Sample Input
  • Sample Output
  • HINT
  • Source
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档