#P2019. [Usaco2009 Nov]找工作

[Usaco2009 Nov]找工作

[USACO09NOV] Job Hunt S

题目描述

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(1D1,000)D (1 \leq D \leq 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(1P150)P (1 \leq P \leq 150) one-way paths connecting C(2C220)C (2 \leq C \leq 220) cities conveniently numbered 1C1\sim C. Bessie is currently in city S(1SC)S (1 \leq S \leq C). Path ii runs one-way from city AiA_i to city Bi(1AiC;1BiC)B_i (1 \leq A_i \leq C; 1 \leq B_i \leq C) and costs nothing to traverse.

To help Bessie, Farmer John will give her access to his private jet service. This service features F(1F350)F (1 \leq F \leq 350) routes, each of which is a one way flight from one city JiJ_i to a another Ki(1JiC;1KiC)K_i (1 \leq J_i \leq C; 1 \leq K_i \leq C) and which costs Ti(1Ti50,000)T_i (1 \leq T_i \leq 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(1D1000)D(1\leq D\leq 1000) 美元,然后它必须到另一座城市工作。当然,它可以在别处工作一阵子后又回到原来的城市再最多赚D美元。而且这样的往返次数没有限制。

城市间有 P(1P150)P(1\leq P\leq 150) 条单向路径连接,共有 C(2C220)C(2\leq C\leq 220) 座城市,编号从 11CC。奶牛贝茜当前处在城市 S(1SC)S(1\leq S\leq C)。路径 ii 从城市 AiA_i 到城市 Bi(1AiC1BiC)B_i(1\leq A_i\leq C,1\leq B_i\leq C),在路径上行走不用任何花费。

为了帮助贝茜,约翰让它使用他的私人飞机服务。这项服务有 FF(1F350)(1\leq F\leq 350) 单向航线,每条航线是从城市 JiJ_i 飞到另一座城市 Ki(1JiC1KiC)K_i(1\leq J_i\leq C,1\leq K_i\leq C),费用是 Ti(1Ti50000)T_i(1\leq T_i\leq 50000) 美元。如果贝茜手中没有现钱,可以用以后赚的钱来付机票钱。

贝茜可以选择在任何时候,在任何城市退休。如果在工作时间上不做限制,贝茜总共可以赚多少钱呢?如果赚的钱也不会出现限制,就输出 -1

输入格式

第一行:5个用空格分开的整数 DPCFSD,P,C,F,S

第2到第P+1行:第i+1行包含2个用空格分开的整数,表示一条从城市 AiA_i 到城市 BiB_i 的单向路径。

接下来F行,每行3个用空格分开的整数,表示一条从城市 JiJ_i 到城市 KiK_i 的单向航线,费用是 TiT_i

输出格式

一个整数,在上述规则下最多可以赚到的钱数。

样例 #1

样例输入 #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 十一月银组