Many of SKB Kontur programmers like to get to work by Metro because the main office is situated quite close the station Uralmash. So, since a sedentary life requires active exercises off-duty, many
of the staff — Nikifor among them — walk from their homes to Metro stations on foot.
Nikifor lives in a part of our city where streets form a grid of residential quarters. All the quarters are squares with side 100 meters. A Metro entrance is situated at one of the crossroads. Nikifor
starts his way from another crossroad which is south and west of the Metro entrance. Naturally, Nikifor, starting from his home, walks along the streets leading either to the north or to the east. On his way he may cross some quarters diagonally from their
south-western corners to the north-eastern ones. Thus, some of the routes are shorter than others. Nikifor wonders, how long is the shortest route.
You are to write a program that will calculate the length of the shortest route from the south-western corner of the grid to the north-eastern one.
Input
There are two integers in the first line:NandM(0 <N,M≤ 1000) — west-east and south-north sizes of the grid. Nikifor starts his way from a crossroad which is
situated south-west of the quarter with coordinates (1, 1). A Metro station is situated north-east of the quarter with coordinates (N,M). The second input line contains a numberK(0 ≤K≤ 100) which is a number of quarters
that can be crossed diagonally. ThenKlines with pairs of numbers separated with a space follow — these are the coordinates of those quarters.
Output
Your program is to output a length of the shortest route from Nikifor's home to the Metro station in meters, rounded to the integer amount of meters.
Sample
input
output
3 2
3
1 1
3 2
1 2
|
383
|
很好的一道动态规划法题目。
注意:
1 行列别搞错了,要很细心一点一点对起来
2 要以边线思考,不要以方块来计算, N*M个方块就成了(N+1)*(M+1)条交叉线了,最下面和最左边的线就方便初始化了
3 注意C++的四舍五入的方法
动态规划的状态转移方程:
if (A[y][x]) B[x] = t + 1.414213562;
else B[x] = min(B[x-1], B[x]) + 1 ;
A[y][x]表示是否有对角线,有对角线必定是走对角线的。
void Metro1119_Vec()
{
int N, M, K, x, y;
cin>>N>>M;//小心什么是行什么是列
vector<vector<bool> > A(M+1, vector<bool>(N+1));
cin>>K;
for (int i = 0; i < K; i++)
{
cin>>x>>y;//列和行别搞错了
A[y][x] = 1;
}
vector<double> B(N+1);
for (int i = 0; i <= N; i++)
{
B[i] = (double)i;
}
for (y = 1; y <= M; y++)
{
double t = B[0];
B[0] += 1.0;
for (x = 1; x <= N; x++)
{
double a = B[x];
if (A[y][x]) B[x] = t + 1.414213562;
else B[x] = min(B[x-1], B[x]) + 1 ;
t = a;
}
}
cout<<(int)(B[N] * 100.0 + 0.5);//修改要全面
}
逛了下网上,发现本题还可以利用LIS的思想去做的。
还可以使用一下bitset的容器进一步省内存。
有空继续优化一下。
分享到:
相关推荐
常见的字体类型有衬线字体(如Times New Roman)、无衬线字体(如Arial)和手写体、装饰字体等。"Metro-df" 可能属于无衬线字体,这种字体风格通常与现代、简洁和专业相关联,常用于网站设计、广告和品牌标识。 在...
Android_tv_metro是一款安卓版TV Metro框架和服务器API。API和数据结构专辑和显示项目:Metro风格是由两个元素构成专辑可以包含多张专辑和显示项目显示项目可以被定义为视频,游戏,应用程序,音乐等您可以从显示...
MeetroDC is a Google Android (2.0) application that allows users to look up DC Metro train times. This can also serve as a learning tool, as it's a pretty basic Android application. Bon appetit. NOTE:...
times = api . getTrainDepartures ( stationcode ) 返回火车从给定车站出发的时间列表。 ===== 获取特定方向的给定车站代码的出发时间 stationcode = 'F01' #Gallery place metro times = api . ...
Such running times cannot be achieved without indices. One of the main design goals of RoutingKit is to make recent research results easily accessible to people developing route planning applications...
Q432087 - cxDateEdit controls are not displayed on a detail page when activating this page for the second and subsequent times in Windows XP B218389 - Focus does not move to the previous/next row ...
对于地铁站,请使用下面记录的/v1/metro/times端点。 必需参数: stopCode — 4 位停止代码,如信息牌所示。 前导零可以省略。 示例请求: { " stopCode " : 1338 } 示例响应: [ { " timing " : " 13
".Metroretro"这个标题可能指的是一个特定的字体或者设计风格,它可能融合了现代(metro)和复古(retro)的元素。在IT行业中,字体不仅关乎视觉美学,还涉及到用户体验、可读性和品牌识别度。对于网页设计、应用...
支持Metro啦! What's New in DevExpress VCL 12.1.6 Release Notes The following sections list all minor and major changes in DevExpress VCL 12.1.6. Note that products, controls and libraries which ...
支持Metro啦! What's New in DevExpress VCL 12.1.6 Release Notes The following sections list all minor and major changes in DevExpress VCL 12.1.6. Note that products, controls and libraries which ...
支持Metro啦! What's New in DevExpress VCL 12.1.6 Release Notes The following sections list all minor and major changes in DevExpress VCL 12.1.6. Note that products, controls and libraries which ...
Q432087 - cxDateEdit controls are not displayed on a detail page when activating this page for the second and subsequent times in Windows XP B218389 - Focus does not move to the previous/next row ...