CF1651C.Fault-tolerant Network

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There is a classroom with two rows of computers. There are nn computers in each row and each computer has its own grade. Computers in the first row has grades a1,a2,,ana_1, a_2, \dots, a_n and in the second row — b1,b2,,bnb_1, b_2, \dots, b_n .

Initially, all pairs of neighboring computers in each row are connected by wire (pairs (i,i+1)(i, i + 1) for all 1i<n1 \le i < n ), so two rows form two independent computer networks.

Your task is to combine them in one common network by connecting one or more pairs of computers from different rows. Connecting the ii -th computer from the first row and the jj -th computer from the second row costs aibj|a_i - b_j| .

You can connect one computer to several other computers, but you need to provide at least a basic fault tolerance: you need to connect computers in such a way that the network stays connected, despite one of its computer failing. In other words, if one computer is broken (no matter which one), the network won't split in two or more parts.

That is the minimum total cost to make a fault-tolerant network?

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Next tt cases follow.

The first line of each test case contains the single integer nn ( 3n21053 \le n \le 2 \cdot 10^5 ) — the number of computers in each row.

The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ) — the grades of computers in the first row.

The third line contains nn integers b1,b2,,bnb_1, b_2, \dots, b_n ( 1bi1091 \le b_i \le 10^9 ) — the grades of computers in the second row.

It's guaranteed that the total sum of nn doesn't exceed 21052 \cdot 10^5 .

输出格式

For each test case, print a single integer — the minimum total cost to make a fault-tolerant network.

输入输出样例

  • 输入#1

    2
    3
    1 10 1
    20 4 25
    4
    1 1 1 1
    1000000000 1000000000 1000000000 1000000000

    输出#1

    31
    1999999998

说明/提示

In the first test case, it's optimal to connect four pairs of computers:

  1. computer 11 from the first row with computer 22 from the second row: cost 14=3|1 - 4| = 3 ;
  2. computer 33 from the first row with computer 22 from the second row: cost 14=3|1 - 4| = 3 ;
  3. computer 22 from the first row with computer 11 from the second row: cost 1020=10|10 - 20| = 10 ;
  4. computer 22 from the first row with computer 33 from the second row: cost 1025=15|10 - 25| = 15 ;

In total, 3+3+10+15=313 + 3 + 10 + 15 = 31 .In the second test case, it's optimal to connect 11 from the first row with 11 from the second row, and 44 from the first row with 44 from the second row.

首页