BZOJ 1003 物流运输 题解 【SPFA+DP】
BZOJ 1003 物流运输 题解
Description
物流公司要把一批货物从码头A运到码头B。由于货物量比较大,需要n天才能运完。货物运输过程中一般要转
停好几个码头。物流公司通常会设计一条固定的运输路线,以便对整个运输过程实施严格的管理和跟踪。由于各种
因素的存在,有的时候某个码头会无法装卸货物。这时候就必须修改运输路线,让货物能够按时到达目的地。但是
修改路线是一件十分麻烦的事情,会带来额外的成本。因此物流公司希望能够订一个n天的运输计划,使得总成本
尽可能地小。
Input
第一行是四个整数n(1<=n<=100)、m(1<=m<=20)、K和e。n表示货物运输所需天数,m表示码头总数,K表示
每次修改运输路线所需成本。接下来e行每行是一条航线描述,包括了三个整数,依次表示航线连接的两个码头编
号以及航线长度(>0)。其中码头A编号为1,码头B编号为m。单位长度的运输费用为1。航线是双向的。再接下来
一行是一个整数d,后面的d行每行是三个整数P( 1 < P < m)、a、b(1< = a < = b < = n)。表示编号为P的码
头从第a天到第b天无法装卸货物(含头尾)。同一个码头有可能在多个时间段内不可用。但任何时间都存在至少一
条从码头A到码头B的运输路线。
Output
包括了一个整数表示最小的总成本。总成本=n天运输路线长度之和+K*改变运输路线的次数。
Sample Input
1 2 1
1 3 3
1 4 2
2 3 2
2 4 4
3 4 1
3 5 2
4 5 2
4
2 2 3
3 1 1
3 3 3
4 4 5
Sample Output
//前三天走1-4-5,后两天走1-3-5,这样总成本为(2+2)*3+(3+2)*2+10=32
———————————————————————分割线———————————————————————
这道题看似不太好做,但是注意到n(1<=n<=100)、m(1<=m<=20)的数据范围,不难想到一些奇怪的乱搞方法。
首先,暴逆 暴力枚举从第 i 天到第 j 天不改路线,走同一路径最小成本 cost( i , j ) , 这里使用SPFA解决,即最短路乘以天数。
接下来就是DP,方程如下:
f( i ) = min { f( i ) , f( j ) + cost( i , j ) + K }
[ATTENTION]:最终的答案一定要减去K,因为开始时多加了一次。
代码:
/**************************************************************
Problem: 1003
User: shadowland
Language: C++
Result: Accepted
Time:52 ms
Memory:7424 kb
****************************************************************/ #include "bits/stdc++.h"
#define INF (2147483647) using namespace std ;
const int maxN = ;
struct Path{int to , val , next;};
typedef long long QAQ ;
inline int gmin ( int x , int y ) {return x < y ? x : y ; } Path e[ maxN<<<< ] ; int F[ maxN ] , Dis[ maxN ] , head[ maxN ] , cost[ maxN ][ maxN ] , In[ maxN ] ;
bool visited[ maxN ] , crash[ maxN ] , target[ maxN ][ maxN ] ; int INPUT ( ){
int x=,f=;char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while(ch>=''&&ch<=''){x=x*+ch-'';ch=getchar();}
return x*f;
} int cnt = ; inline void DP_Init_1 ( int i , int j , int M ){
cost [ i ][ j ] = Dis[ M ] * ( Dis[M]>=0x3f3f3f3f ? : j - i + ) ;
}
void DP_Init_2 ( ){
memset(F,0x3f3f3f3f,sizeof(F));
F[]=;
}
void DP ( int N ,int _k) {
for ( int i= ; i<=N ; ++i ) {
for ( int j= ; j<i ; ++j ) {
F[i]=gmin(F[i],F[j]+cost[j+][i]+_k);
}
}
return ;
} void Add_Edge ( const int x , const int y , const int _val ) {
e[ ++cnt ].to = y ;
e[ cnt ].val = _val ;
e[ cnt ].next = head[ x ] ;
head[ x ] = cnt ;
} bool SPFA ( const int S , const int N ) {
int t , temp ;
queue <int> Q;
memset( visited , , sizeof ( visited ) ) ;
memset( Dis , 0x3f3f3f3f , sizeof ( Dis ) ) ;
memset( In , , sizeof ( In ) ) ;
Q.push( S ) ;
visited[ S ] = true ;
Dis[ S ] = ;
while( !Q.empty( ) ) {
t = Q.front( ) ;Q.pop( ) ;visited[ t ] = false ;
for ( int i=head[t] ; i ; i = e[ i ] . next ) {
temp = e[ i ].to;
if ( crash [ temp ] ) continue ;
if ( Dis[ temp ] >Dis[ t ] + e[ i ].val ) {
Dis[ temp ] = Dis[ t ] + e[ i ] . val ;
if( !visited[ temp ] ) {
Q.push( temp ) ;
visited[ temp ] = true ;
if( ++In[temp] > N ) return false ;
} }
}
}
return true ;
}
void DEBUG_ ( int n ) {
for ( int i= ; i<=n ; ++i ) {
printf ("%d ",F[i]);
}
putchar('\n');
}
void DEBUG__ ( int n ) {
for ( int i= ; i<=n ; ++i ) {
for ( int j= ; j<=n ; ++j ) {
printf ("%d ",cost[ i ][ j ]);
}
putchar('\n');
}
putchar('\n');
}
int main ( ) {
int N , M , K , E ;
N = INPUT ( ) ;M = INPUT ( ) ;K = INPUT ( ) ;E = INPUT ( ) ;
for ( int i= ; i<=E ; ++i ) {
int _x , _y , _val ;
_x = INPUT ( );_y = INPUT ( ) ; _val = INPUT ( ) ;
Add_Edge ( _x , _y , _val ) ;
Add_Edge ( _y , _x , _val ) ;
}
int D = INPUT ( ) ;
for ( int i= ; i<=D ; ++i ){
int from = INPUT ( ) ; int start = INPUT ( ) ; int end = INPUT ( ) ;
for ( int j=start ; j<=end ; ++j )
target[ from ][ j ] = true ;
}
for ( int i= ; i<=N ; ++i ) {
for ( int j=i ; j<=N ; ++j ) {
memset ( crash , false , sizeof ( crash ) ) ;
for ( int k= ; k<M ;++k ){
for ( int q=i ; q<=j ; ++q ) {
if ( target [ k ][ q ] ){
crash[k]=true;
break;
}
} }
SPFA( , N ) ;
DP_Init_1 ( i , j , M ) ;
}
}
DP_Init_2 ( ) ;
DP ( N , K ) ;
//DEBUG_( N );
//DEBUG__( N );
printf("%d",F[N]-K);
return ;
}
2016-10-01 00:49:40
(完)
BZOJ 1003 物流运输 题解 【SPFA+DP】的更多相关文章
- BZOJ 1003 物流运输 (动态规划 SPFA 最短路)
1003: [ZJOI2006]物流运输 Time Limit: 10 Sec Memory Limit: 162 MB Submit: 5590 Solved: 2293 [Submit][Stat ...
- BZOJ 1003 物流运输trans dijstra+dp
1003: [ZJOI2006]物流运输trans Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 3896 Solved: 1608[Submit] ...
- BZOJ 1003 - 物流运输 - [最短路+dp]
题目链接:https://www.lydsy.com/JudgeOnline/problem.php?id=1003 Time Limit: 10 Sec Memory Limit: 162 MB D ...
- BZOJ 1003 [ZJOI2006]物流运输trans SPFA+DP
题意:链接 方法:SPFA+DP 解析:挺好的题目.因为数据范围较小所以用这样的方式能够搞,只是也是挺不好想的. 我们定义cost(i,j)表示从第i天走到第j天运用同一种方式的最小花费,然后因为数据 ...
- 【BZOJ1003】1003: [ZJOI2006]物流运输trans SPFA+DP
Description 物流公司要把一批货物从码头A运到码头B.由于货物量比较大,需要n天才能运完.货物运输过程中一般要转停好几个码头.物流公司通常会设计一条固定的运输路线,以便对整个运输过程实施严格 ...
- BZOJ 1003 物流运输 (dp + dijkstra)
1003: [ZJOI2006]物流运输 Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 8672 Solved: 3678[Submit][Stat ...
- BZOJ-1003 物流运输trans SPFA+DP
傻逼错误耗我1h,没给全范围坑我1A.... 1003: [ZJOI2006]物流运输trans Time Limit: 10 Sec Memory Limit: 162 MB Submit: 529 ...
- BZOJ 1003: [ZJOI2006]物流运输(spfa+dp)
http://www.lydsy.com/JudgeOnline/problem.php?id=1003 题意: 思路: 首先用spfa计算一下任意两天之内的最短路,dis[a][b]表示的就是在第a ...
- bzoj 1003物流运输 区间dp+spfa
基本思路: 一开始确实没什么思路,因为觉得怎么着都会超时,然后看一下数据范围,呵,怎么都不会超时. 思路: 1.看到能改变线路,想到可以用以下区间dp,区间dp的话,先枚举长度,枚举开始位置,然后枚举 ...
随机推荐
- Shell编程基础教程5--文本过滤、正则表达式、相关命令
5.文本过滤.正则表达式.相关命令 5.1.正则表达式(什么是正则表达式?正则表达式怎么进行匹配?常用命令) 简介: 一种用来描述文本模式的特殊语法 ...
- Python win32api提取exe图标icon
转载地址: http://blog.csdn.net/gumanren/article/details/6129416 代码如下: # -*- coding: utf-8 -*- import sys ...
- 【JAVA与XML、dtd约束、Schema约束】
一.XML. (1)XML:Extensible Markup Language (2)XML是一种标记语言. (3)XML的设计宗旨是传输数据,而不是显示数据. (4)XML标签没有被预定义,即使用 ...
- [LeetCode] Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and ret ...
- Python多版本共存之pyenv
经常遇到这样的情况: 系统自带的Python是2.6,自己需要Python 2.7中的某些特性: 系统自带的Python是2.x,自己需要Python 3.x: 此时需要在系统中安装多个Python, ...
- hdu 5366 组合数 *
考虑放1个,2个....的情况,相加就是最后的结果 #include<cstdio> #include<iostream> #include<algorithm> ...
- 并发异步处理队列 .NET 4.5+
namespace Test { using System; using System.Threading; using System.Threading.Tasks; using Microshao ...
- ios换肤思想,及工具类
// 实现原理及思路:不同种类的皮肤放在不同的文件夹下,用一个plist文件存放不同控制器下的控件的背景颜色 //plist文件名称为控制器的名称,内部的数据字典的key value对自定义一个命名规 ...
- Java学习随笔1:Java是值传递还是引用传递?
Java always passes arguments by value NOT by reference. Let me explain this through an example: publ ...
- CF735D Taxes 哥德巴赫猜想\判定素数 \进一步猜想
http://codeforces.com/problemset/problem/735/D 题意是..一个数n的贡献是它的最大的因子,这个因子不能等于它本身 然后呢..现在我们可以将n拆成任意个数的 ...