CF1883G1.Dances (Easy version)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is the easy version of the problem. The only difference is that in this version m=1m = 1 .

You are given two arrays of integers a1,a2,,ana_1, a_2, \ldots, a_n and b1,b2,,bnb_1, b_2, \ldots, b_n . Before applying any operations, you can reorder the elements of each array as you wish. Then, in one operation, you will perform both of the following actions, if the arrays are not empty:

  • Choose any element from array aa and remove it (all remaining elements are shifted to a new array aa ),
  • Choose any element from array bb and remove it (all remaining elements are shifted to a new array bb ).

Let kk be the final size of both arrays. You need to find the minimum number of operations required to satisfy ai<bia_i < b_i for all 1ik1 \leq i \leq k .

This problem was too easy, so the problem author decided to make it more challenging. You are also given a positive integer mm . Now, you need to find the sum of answers to the problem for mm pairs of arrays (c[i],b)(c[i], b) , where 1im1 \leq i \leq m . Array c[i]c[i] is obtained from aa as follows:

  • c[i]1=ic[i]_1 = i ,
  • c[i]j=ajc[i]_j = a_j , for 2jn2 \leq j \leq n .

输入格式

Each test consists of multiple test cases. The first line contains a single integer tt ( 1t1041 \leq t \leq 10^4 ) - the number of sets of input data. This is followed by their description.

The first line of each test case contains two integers nn and mm ( 2n1052 \leq n \leq 10^5 , m=1m = 1 ) - the size of arrays aa and bb and the constraints on the value of element a1a_1 .

The second line of each test case contains n1n - 1 integers a2,,ana_2, \ldots, a_n ( 1ai1091 \leq a_i \leq 10^9 ).

The third line of each test case contains nn integers b1,b2,,bnb_1, b_2, \ldots, b_n ( 1bi1091 \leq b_i \leq 10^9 ).

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5 .

输出格式

For each test case, output the total number of minimum operations for all pairs of arrays (ci,b)(c_i, b) .

输入输出样例

  • 输入#1

    4
    2 1
    1
    3 2
    4 1
    5 1 5
    3 8 3 3
    8 1
    4 3 3 2 2 1 1
    1 1 1 1 3 3 3 3
    9 1
    9 2 8 3 7 4 6 5
    1 2 3 2 1 4 5 6 5

    输出#1

    0
    1
    4
    4

说明/提示

In the first test case for the pair of arrays ([1,1],[3,2])([1, 1], [3, 2]) , the answer is 00 . No operations or reordering of elements are needed.

首页