CF793D.Presents in Bankopolis
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Bankopolis is an incredible city in which all the n crossroads are located on a straight line and numbered from 1 to n along it. On each crossroad there is a bank office.
The crossroads are connected with m oriented bicycle lanes (the i -th lane goes from crossroad ui to crossroad vi ), the difficulty of each of the lanes is known.
Oleg the bank client wants to gift happiness and joy to the bank employees. He wants to visit exactly k offices, in each of them he wants to gift presents to the employees.
The problem is that Oleg don't want to see the reaction on his gifts, so he can't use a bicycle lane which passes near the office in which he has already presented his gifts (formally, the i -th lane passes near the office on the x -th crossroad if and only if min(u_{i},v_{i})<x<max(u_{i},v_{i}))) . Of course, in each of the offices Oleg can present gifts exactly once. Oleg is going to use exactly k−1 bicycle lane to move between offices. Oleg can start his path from any office and finish it in any office.
Oleg wants to choose such a path among possible ones that the total difficulty of the lanes he will use is minimum possible. Find this minimum possible total difficulty.
输入格式
The first line contains two integers n and k ( 1<=n,k<=80 ) — the number of crossroads (and offices) and the number of offices Oleg wants to visit.
The second line contains single integer m ( 0<=m<=2000 ) — the number of bicycle lanes in Bankopolis.
The next m lines contain information about the lanes.
The i -th of these lines contains three integers ui , vi and ci ( 1<=ui,vi<=n , 1<=ci<=1000 ), denoting the crossroads connected by the i -th road and its difficulty.
输出格式
In the only line print the minimum possible total difficulty of the lanes in a valid path, or -1 if there are no valid paths.
输入输出样例
输入#1
7 4 4 1 6 2 6 2 2 2 4 2 2 7 1
输出#1
6
输入#2
4 3 4 2 1 2 1 3 2 3 4 2 4 1 1
输出#2
3
说明/提示
In the first example Oleg visiting banks by path 1→6→2→4 .
Path 1→6→2→7 with smaller difficulity is incorrect because crossroad 2→7 passes near already visited office on the crossroad 6 .
In the second example Oleg can visit banks by path 4→1→3 .