洛谷P1938 [USACO09NOV]找工就业Job Hunt(spfa) 题解
題目來源:
點擊打開鏈接
題目描述:
題目描述
Bessie is running out of money and is searching for jobs. Farmer John knows this and wants the cows to travel around so he has imposed a rule that his cows can only make D (1 <= D <= 1,000) dollars in a city before they must work in another city. Bessie can, however, return to a city after working elsewhere for a while and again earn the D dollars maximum in that city. There is no limit on the number of times Bessie can do this.
Bessie's world comprises P (1 <= P <= 150) one-way paths connecting C (2 <= C <= 220) cities conveniently numbered 1..C. Bessie is currently in city S (1 <= S <= C). Path i runs one-way from city A_i to city B_i (1 <= A_i <= C; 1 <= B_i <= C) and costs nothing to traverse.
To help Bessie, Farmer John will give her access to his private jet service. This service features F (1 <= F <= 350) routes, each of which is a one way flight from one city J_i to a another K_i (1 <= J_i <= C; 1 <= K_i <= C) and which costs T_i (1 <= T_i <= 50,000) dollars. Bessie can pay for the tickets from future earnings if she doesn't have the cash on hand.
Bessie can opt to retire whenever and wherever she wants. Given an unlimited amount of time, what is the most money that Bessie can make presuming she can make the full D dollars in each city she can travel to? Print -1 if there is no limit to this amount.
奶牛們正在找工作。農場主約翰知道后,鼓勵奶牛們四處碰碰運氣。而且他還加了一條要求:一頭牛在一個城市最多只能賺D(1≤D≤1000)美元,然后它必須到另一座城市工作。當然,它可以在別處工作一陣子后又回到原來的城市再最多賺D美元。而且這樣的往返次數沒有限制。
城市間有P(1≤P≤150)條單向路徑連接,共有C(2≤C≤220)座城市,編號從1到C。奶牛貝茜當前處在城市S(1≤S≤C)。路徑i從城市A_i到城市B_i(1≤A_i≤C,1≤B_i≤C),在路徑上行走不用任何花費。
為了幫助貝茜,約翰讓它使用他的私人飛機服務。這項服務有F條(1≤F≤350)單向航線,每條航線是從城市J_i飛到另一座城市K_i(1≤J_i≤C,1≤K_i≤C),費用是T_i(1≤T_i≤50000)美元。如果貝茜手中沒有現錢,可以用以后賺的錢來付機票錢。
貝茜可以選擇在任何時候,在任何城市退休。如果在工作時間上不做限制,貝茜總共可以賺多少錢呢?如果賺的錢也不會出現限制,就輸出-1。
輸入輸出格式
輸入格式:第一行:5個用空格分開的整數D,P,C,F,S。
第2到第P+1行:第i+1行包含2個用空格分開的整數,表示一條從城市A_i到城市B_i的單向路徑。
接下來F行,每行3個用空格分開的整數,表示一條從城市J_i到城市K_i的單向航線,費用是T_i。
輸出格式:一個整數,在上述規則下最多可以賺到的錢數。
輸入輸出樣例
輸入樣例#1:?復制100 3 5 2 1 1 5 2 3 1 4 5 2 150 2 5 120 輸出樣例#1:?復制250說明
This world has five cities, three paths and two jet routes. Bessie starts out in city 1, and she can only make 100 dollars in each city before moving on.
Bessie can travel from city 1 to city 5 to city 2 to city 3, and make a total of 4*100 - 150 = 250 dollars.
Source: USACO 2009 November Silver
這個世界上有五個城市,三條單向路徑和兩條單向航線。貝茜從一號城市開始她的旅行,她在離開一個城市前最多只能在這個城市賺100美元。
貝茜可以通過從一號城市-->五號城市-->二號城市-->三號城市的旅行賺到4*100-150=250美元。
(注:在四個城市各賺100美元,從五號城市飛到二號城市花掉150美元)
來源:USACO 2009 十一月銀組
解題思路:
? ?? ? 這題是一個最長路的裸題,關鍵是建邊,假設起點是s,s有到a的單向路徑,那么就建一條從s到a邊權為d的有向邊,如果是單向航線,那么就建一條從s到a邊權為d-c,c為航費,然后跑一便最長路就行,最后把答案加上一個d(s的)就行,或者可以將邊權都取反,那么就只要求最短路就行。。。代碼是求最短路。
代碼:
#include <iostream> #include <cstring> #include <string> #include <algorithm> #include <cmath> #include <queue> #include <vector> #define inf 0x3f3f3f3f using namespace std; vector<pair<int,int> >E[1000]; queue<int>q; bool vis[1000];int dis[1000]; int rd[1000]; int main() {int d,m1,n,m2,s;cin>>d>>m1>>n>>m2>>s;for(int i=1;i<=m1;i++){int a,b;cin>>a>>b;E[a].push_back(make_pair(b,-d));}for(int i=1;i<=m2;i++){int a,b,c;cin>>a>>b>>c;E[a].push_back(make_pair(b,c-d));}memset(vis,0,sizeof(vis));memset(rd,0,sizeof(rd));memset(dis,inf,sizeof(dis));int flag=0;q.push(s);vis[s]=1;rd[s]++;dis[s]=0;while(!q.empty()){int now=q.front();q.pop();vis[now]=0;if(rd[now]>n){flag=1;break;}for(int i=0;i<E[now].size();i++){int v=E[now][i].first;//cout<<dis[v]<<" "<<dis[now]+E[now][i].second<<endl;if(dis[v]>dis[now]+E[now][i].second){dis[v]=dis[now]+E[now][i].second;// cout<<dis[v]<<endl;if(!vis[v]){q.push(v);vis[v]=1;rd[v]++;}}}}if(flag)cout<<"-1"<<endl;else {int ans=inf;for(int i=1;i<=n;i++)if(dis[i]<ans){ans=dis[i];}cout<<(-1)*ans+d<<endl;}return 0; }總結
以上是生活随笔為你收集整理的洛谷P1938 [USACO09NOV]找工就业Job Hunt(spfa) 题解的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 配置AD域环境、OU、GPO
- 下一篇: MAUI 框架安卓入门开发01 界面设计