C - Min Cost Cycle Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 700700

問題文

NN 頂点の重み付き有向グラフがあります。 各頂点には 22 つの整数が書かれており、頂点 ii には AiA_iBiB_i が書かれています。

このグラフには、任意の 1x,yN1 \leq x,y \leq N について 頂点 xx から頂点 yy へ向かう辺があり、その重みは min(Ax,By){\rm min}(A_x,B_y) です。

このグラフの有向サイクルであって、すべての頂点をちょうど 11 度ずつ通るものを考えます。 そのようなサイクルの辺の重みの総和の最小値を求めてください。

制約

  • 2N1052 \leq N \leq 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • 1Bi1091 \leq B_i \leq 10^9
  • 入力はすべて整数である。

入力

入力は以下の形式で標準入力から与えられる。

NN
A1A_1 B1B_1
A2A_2 B2B_2
::
ANA_N BNB_N

出力

すべての頂点をちょうど 11 度ずつ通るサイクルの辺の重みの総和の最小値を出力せよ。


入力例 1Copy

Copy
3
1 5
4 2
6 3

出力例 1Copy

Copy
7

頂点 13211→3→2→1 というサイクルを考えると、その辺の重みは、min(A1,B3)=1{\rm min}(A_1,B_3)=1, min(A3,B2)=2{\rm min}(A_3,B_2)=2, min(A2,B1)=4{\rm min}(A_2,B_1)=4 となり、 その総和は 77 になります。 辺の重みの総和を 77 より小さくすることは出来ないので、答えは 77 になります。


入力例 2Copy

Copy
4
1 5
2 6
3 7
4 8

出力例 2Copy

Copy
10

入力例 3Copy

Copy
6
19 92
64 64
78 48
57 33
73 6
95 73

出力例 3Copy

Copy
227

Score : 700700 points

Problem Statement

We have a directed weighted graph with NN vertices. Each vertex has two integers written on it, and the integers written on Vertex ii are AiA_i and BiB_i.

In this graph, there is an edge from Vertex xx to Vertex yy for all pairs 1x,yN1 \leq x,y \leq N, and its weight is min(Ax,By){\rm min}(A_x,B_y).

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

  • 2N1052 \leq N \leq 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • 1Bi1091 \leq B_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN
A1A_1 B1B_1
A2A_2 B2B_2
::
ANA_N BNB_N

Output

Print the minimum total weight of the edges in such a cycle.


Sample Input 1Copy

Copy
3
1 5
4 2
6 3

Sample Output 1Copy

Copy
7

Consider the cycle 13211→3→2→1. The weights of those edges are min(A1,B3)=1{\rm min}(A_1,B_3)=1, min(A3,B2)=2{\rm min}(A_3,B_2)=2 and min(A2,B1)=4{\rm min}(A_2,B_1)=4, for a total of 77. As there is no cycle with a total weight of less than 77, the answer is 77.


Sample Input 2Copy

Copy
4
1 5
2 6
3 7
4 8

Sample Output 2Copy

Copy
10

Sample Input 3Copy

Copy
6
19 92
64 64
78 48
57 33
73 6
95 73

Sample Output 3Copy

Copy
227


2025-04-03 (Thu)
10:51:50 +00:00