bzoj1003题解
生活随笔
收集整理的這篇文章主要介紹了
bzoj1003题解
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
【題意分析】
給你一張無(wú)向圖,固定起點(diǎn)和終點(diǎn),除這兩點(diǎn)外每個(gè)點(diǎn)都有可能消失一段時(shí)間(保證起點(diǎn)和終點(diǎn)相互可達(dá)),每天選擇的路徑總長(zhǎng),以及對(duì)路徑的修改都有代價(jià),求給定時(shí)間內(nèi)最小代價(jià)保證起點(diǎn)終點(diǎn)始終連通。
【解題思路】
此題數(shù)據(jù)范圍極小,可直接用最短路+DP水過(guò)。
先預(yù)處理cost[i][j]表示從第i天到第j天都選擇一樣的路徑的最小代價(jià),直接用Dijkstra或SPFA即可。時(shí)間復(fù)雜度O(N2Mlog2M)或O(N2kE)。
然后DP,f[i]表示從第1天到第i天的最小代價(jià),邊界f[0]=-K,轉(zhuǎn)移方程f[i]=f[j]+cost[j+1][i]*(i-j)+K(j<i)。時(shí)間復(fù)雜度O(N2)。
總時(shí)間復(fù)雜度O(N2Mlog2M)或O(N2kE)。
【參考代碼】
1 #include <cctype> 2 #include <cstdio> 3 #define REP(I,start,end) for(int I=(start);I<=(end);I++) 4 #define PER(I,start,end) for(int I=(start);I>=(end);I--) 5 #define maxint 32767 6 #define maxlongint 2147483647 7 typedef long long LL; 8 inline int getint() 9 { 10 char ch=getchar(); 11 for(;!isdigit(ch)&&ch!='-';ch=getchar()); 12 bool impositive=ch=='-'; 13 if(impositive) 14 ch=getchar(); 15 int result=0; 16 for(;isdigit(ch);ch=getchar()) 17 result=(result<<3)+(result<<1)+ch-'0'; 18 return impositive?-result:result; 19 } 20 inline LL getLL() 21 { 22 char ch=getchar(); 23 for(;!isdigit(ch)&&ch!='-';ch=getchar()); 24 bool impositive=ch=='-'; 25 if(impositive) 26 ch=getchar(); 27 LL result=0ll; 28 for(;isdigit(ch);ch=getchar()) 29 result=(result<<3)+(result<<1)+ch-'0'; 30 return impositive?-result:result; 31 } 32 template<typename T> inline bool getmax(T &target,T pattern) 33 { 34 return pattern>target?target=pattern,true:false; 35 } 36 template<typename T> inline bool getmin(T &target,T pattern) 37 { 38 return pattern<target?target=pattern,true:false; 39 } 40 //Header Template 41 #include <cstring> 42 using namespace std; 43 bool nownot[30],used[30],cannot[110][30]; 44 int n,rest[30],dist[30],f[110],map[30][30],cost[110][110]; 45 inline int Dijkstra() 46 { 47 int cnt=0; 48 REP(i,1,n) 49 if(!nownot[i]) 50 rest[++cnt]=i; 51 memset(dist,0x3f,sizeof(dist)); 52 memset(used,0,sizeof(used)); 53 dist[1]=0; 54 REP(i,2,cnt) 55 { 56 int miner=maxlongint,mini; 57 REP(j,1,cnt) 58 if(!used[j]&&getmin(miner,dist[j])) 59 mini=j; 60 used[mini]=true; 61 REP(j,1,cnt) 62 if(!used[j]) 63 getmin(dist[j],dist[mini]+map[rest[mini]][rest[j]]); 64 } 65 return dist[cnt]<dist[0]?dist[cnt]:-1; 66 } 67 int main() 68 { 69 int day=getint(); 70 n=getint(); 71 int K=getint(),m=getint(); 72 memset(map,0x3f,sizeof(map)); 73 while(m--) 74 { 75 int u=getint(),v=getint(),l=getint(); 76 map[u][v]=map[v][u]=l; 77 } 78 int d=getint(); 79 memset(cannot,0,sizeof(cannot)); 80 while(d--) 81 { 82 int p=getint(),start=getint(),end=getint(); 83 REP(i,start,end) 84 cannot[i][p]=true; 85 } 86 REP(i,1,day) 87 { 88 memset(nownot,0,sizeof(nownot)); 89 REP(j,i,day) 90 { 91 REP(k,1,n) 92 nownot[k]|=cannot[j][k]; 93 cost[i][j]=Dijkstra(); 94 } 95 } 96 memset(f,0x7f,sizeof(f)); 97 f[0]=-K; 98 REP(i,1,day) 99 REP(j,0,i-1) 100 { 101 int c=cost[j+1][i]; 102 if(c>=0) 103 getmin(f[i],f[j]+cost[j+1][i]*(i-j)+K); 104 } 105 printf("%d\n",f[day]); 106 return 0; 107 } View Code?
轉(zhuǎn)載于:https://www.cnblogs.com/spactim/p/6414928.html
新人創(chuàng)作打卡挑戰(zhàn)賽發(fā)博客就能抽獎(jiǎng)!定制產(chǎn)品紅包拿不停!總結(jié)
以上是生活随笔為你收集整理的bzoj1003题解的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Web中常用字体介绍(转)
- 下一篇: 编程题练习 两个栈实现队列