每天,農夫John需要經過一些道路去檢查牛棚N裡面的牛. 農場上有M(1<=M<=50,000)條雙向泥土道路,編號為1..M. 道路i連線牛棚P1_i和P2_i (1 <= P1_i <= N; 1 <= P2_i<= N). John需要T_i (1 <= T_i <= 1,000,000)時間單位用道路i從P1_i走到P2_i或者從P2_i 走到P1_i 他想更新一些路經來減少每天花在路上的時間.具體地說,他想更新K (1 <= K <= 20)條路經,將它們所須時間減為0.幫助FJ選擇哪些路經需要更新使得從1到N的時間儘量少.
BZOJ1579: [Usaco2009 Feb]Revamping Trails 道路升級
1579: [Usaco2009 Feb]Revamping Trails 道路升級
Time Limit: 10 Sec Memory Limit: 64 MBSubmit: 1936 Solved: 536
[Submit][Status][Discuss]
Description
Input
* 第一行: 三個空格分開的數: N, M, 和 K * 第2..M+1行: 第i+1行有三個空格分開的數:P1_i, P2_i, 和 T_i
Output
* 第一行: 更新最多K條路經後的最短路經長度.
Sample Input
4 4 1
1 2 10
2 4 10
1 3 1
3 4 100
1 2 10
2 4 10
1 3 1
3 4 100
Sample Output
1
HINT
K是1; 更新道路3->4使得從3到4的時間由100減少到0. 最新最短路經是1->3->4,總用時為1單位. N<=10000
Source
題解: 這題我寫了好長時間 一個多半小時吧 (我好菜啊.jpg ) 分層圖最短路 可以dp考慮一下
跟我以前寫的分層圖的方式不太一樣 不過思想差不多 就是(我理解為hash一下建多平面圖)比如乘個n什麼的
聽說這到題卡spfa 還是乖乖寫dijkstra+優先佇列吧,不能說很難 但我好!菜!啊!
#include<bits/stdc++.h>
#define ll long long
#define N 10005
#define M 100005
const int INF = 0x7fffffff;
const double eps = 1e-5;
const int maxn = 50000 + 5;
using namespace std;
int n,m,K,cnt,k;
int to[M],head[N],next[M],w[M];
int dis[N][25],vis[N][25];
void Add(int u,int y,int z)
{
to[++cnt] = y; next[cnt] = head[u];head[u] = cnt;w[cnt] =z;
to[++cnt] = u; next[cnt] = head[y];head[y] = cnt;w[cnt] =z;
}
int read()
{
int x = 0 , f = 1; char ch = getchar();
while(ch<'0'||ch>'9') {if(ch=='-')f*=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=x*10+(ch-'0');ch=getchar();}
return x * f;
}
void dijkstra()
{
priority_queue <pair<int,int>,vector<pair<int,int> >,greater<pair<int,int> > > q;
memset(dis,127/3,sizeof(dis));
dis[1][0] = 0;
q.push(make_pair(0,1));
while(!q.empty())
{
int now = q.top().second; q.pop();
int z = now / (n + 1); now = now % (n + 1);
if(vis[now][z]) continue;
vis[now][z] = 1;
for(int i = head[now] , y ; i ; i = next[i])
{
if(dis[y = to[i]][z] > dis[now][z] + w[i])
{
dis[to[i]][z] = dis[now][z] + w[i];
q.push(make_pair(dis[to[i]][z],z*(n+1)+y));
}
if( z == k) continue; //跳躍次數用光了
if(dis[to[i]][z+1]>dis[now][z])
{
dis[to[i]][z+1]=dis[now][z];
q.push(make_pair(dis[to[i]][z+1],(z+1)*(n+1)+y));
}
}
}
}
int main()
{
n = read(), m = read(), k = read();
for(int i = 1 ; i <= m ; i++)
{
int x = read(),y = read(),z = read();
Add(x,y,z);
}
dijkstra();
printf("%d",dis[n][k]);
return 0;
}
相關文章
- BZOJ 1579 [Usaco2009 Feb]Revamping Trails 道路升級:dijkstra 分層圖【將k條邊改為0】AI
- 運維人員的職業升級道路運維
- BZOJ 3398 [Usaco2009 Feb]Bullcow 牡牛和牝牛:dp【字首和優化】優化
- Nacos 爆重大 Bug!!不要升級,不要升級,不要升級
- Truffle 2.0升級3.0升級指南
- Vue頁面級快取解決方案feb-alive (下)Vue快取
- How To Move The DB Audit Trails To A New TablespaceAI
- rac 升級crs 升級資料庫軟體,升級資料庫資料庫
- Oracle FGA 的使用和cleanup audit trailsOracleAI
- linux 核心升級步驟,kernel升級Linux
- Nginx升級Nginx
- 升級核心
- mysql升級MySql
- ES升級
- 資料庫升級之-Dataguard滾動升級資料庫
- mongodb單機從3.2升級到4.0.4升級MongoDB
- 生產庫升級:oracle 9.2.0.1升級oracle 9.2.0.8Oracle
- (十二).NET6 + React :升級!升級!還是***升級!!!+ IdentityServer4實戰ReactIDEServer
- oracle 10 rac 升級 10.2.0.1升級到10.2.0.5Oracle
- Brew Elasticsearch 升級Elasticsearch
- Windows 升級 powershellWindows
- node 版本升級
- 升級APEX 元件元件
- Zurmo – – 升級指南
- IT 基礎升級
- gcc版本升級GC
- NiFi版本升級Nifi
- aix升級opensshAI
- mysql的升級MySql
- PostgreSQL升級方案SQL
- ubuntu核心升級Ubuntu
- 升級opatch工具
- 麒麟核心升級
- Ubuntu升級opensshUbuntu
- nginx平滑升級Nginx
- Jenkins升級Jenkins
- 升級pythonPython
- 如何升級 pip