

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
頂点の重み付き有向グラフがあります。 各頂点には つの整数が書かれており、頂点 には と が書かれています。
このグラフには、任意の について 頂点 から頂点 へ向かう辺があり、その重みは です。
このグラフの有向サイクルであって、すべての頂点をちょうど 度ずつ通るものを考えます。 そのようなサイクルの辺の重みの総和の最小値を求めてください。
制約
- 入力はすべて整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
すべての頂点をちょうど 度ずつ通るサイクルの辺の重みの総和の最小値を出力せよ。
入力例 1Copy
3 1 5 4 2 6 3
出力例 1Copy
7
頂点 というサイクルを考えると、その辺の重みは、, , となり、 その総和は になります。 辺の重みの総和を より小さくすることは出来ないので、答えは になります。
入力例 2Copy
4 1 5 2 6 3 7 4 8
出力例 2Copy
10
入力例 3Copy
6 19 92 64 64 78 48 57 33 73 6 95 73
出力例 3Copy
227
Score : points
Problem Statement
We have a directed weighted graph with vertices. Each vertex has two integers written on it, and the integers written on Vertex are and .
In this graph, there is an edge from Vertex to Vertex for all pairs , and its weight is .
We will consider a directed cycle in this graph that visits every vertex exactly once. Find the minimum total weight of the edges in such a cycle.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum total weight of the edges in such a cycle.
Sample Input 1Copy
3 1 5 4 2 6 3
Sample Output 1Copy
7
Consider the cycle . The weights of those edges are , and , for a total of . As there is no cycle with a total weight of less than , the answer is .
Sample Input 2Copy
4 1 5 2 6 3 7 4 8
Sample Output 2Copy
10
Sample Input 3Copy
6 19 92 64 64 78 48 57 33 73 6 95 73
Sample Output 3Copy
227