A16172 | Dances (Hard Version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is the hard version of the problem. The only difference is that in this version $m \leq 10^9$ .
You are given two arrays of integers $a_1, a_2, \ldots, a_n$ and $b_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 $a$ and remove it (all remaining elements are shifted to a new array $a$ ),
- Choose any element from array $b$ and remove it (all remaining elements are shifted to a new array $b$ ).
Let $k$ be the final size of both arrays. You need to find the minimum number of operations required to satisfy $a_i < b_i$ for all $1 \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 $m$ . Now, you need to find the sum of answers to the problem for $m$ pairs of arrays $(c[i], b)$ , where $1 \leq i \leq m$ . Array $c[i]$ is obtained from $a$ as follows:
- $c[i]_1 = i$ ,
- $c[i]_j = a_j$ , for $2 \leq j \leq n$ .
You are given two arrays of integers $a_1, a_2, \ldots, a_n$ and $b_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 $a$ and remove it (all remaining elements are shifted to a new array $a$ ),
- Choose any element from array $b$ and remove it (all remaining elements are shifted to a new array $b$ ).
Let $k$ be the final size of both arrays. You need to find the minimum number of operations required to satisfy $a_i < b_i$ for all $1 \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 $m$ . Now, you need to find the sum of answers to the problem for $m$ pairs of arrays $(c[i], b)$ , where $1 \leq i \leq m$ . Array $c[i]$ is obtained from $a$ as follows:
- $c[i]_1 = i$ ,
- $c[i]_j = a_j$ , for $2 \leq j \leq n$ .
输入格式
Each test consists of multiple test cases. The first line contains a single integer $t$ ( $1 \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 $n$ and $m$ ( $2 \leq n \leq 10^5$ , $1 \leq m \leq 10^9$ ) - the size of arrays $a$ and $b$ and the constraints on the value of element $a_1$ .
The second line of each test case contains $n - 1$ integers $a_2, \ldots, a_n$ ( $1 \leq a_i \leq 10^9$ ).
The third line of each test case contains $n$ integers $b_1, b_2, \ldots, b_n$ ( $1 \leq b_i \leq 10^9$ ).
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
The first line of each test case contains two integers $n$ and $m$ ( $2 \leq n \leq 10^5$ , $1 \leq m \leq 10^9$ ) - the size of arrays $a$ and $b$ and the constraints on the value of element $a_1$ .
The second line of each test case contains $n - 1$ integers $a_2, \ldots, a_n$ ( $1 \leq a_i \leq 10^9$ ).
The third line of each test case contains $n$ integers $b_1, b_2, \ldots, b_n$ ( $1 \leq b_i \leq 10^9$ ).
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, output the total number of minimum operations for all pairs of arrays $(c_i, b)$ .
输入输出样例
输入 #1
4 2 4 1 3 2 4 7 5 1 5 3 8 3 3 8 4 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
2 12 16 4
In the first test case:
- For the pair of arrays $([1, 1], [3, 2])$ , the answer is $0$ . No operations or reordering of elements are needed.
- For the pair of arrays $([2, 1], [3, 2])$ , the answer is $0$ . The elements of the first array can be rearranged to obtain $[1, 2)$ . No operations are needed.
- For the pair of arrays $([3, 1], [3, 2])$ , the answer is $1$ . The element $3$ can be removed from the first array and the element $2$ can be removed from the second array.
- For the pair of arrays $([4, 1], [3, 2])$ , the answer is $1$ . The element $4$ can be removed from the first array and the element $3$ can be removed from the second array.
- For the pair of arrays $([1, 1], [3, 2])$ , the answer is $0$ . No operations or reordering of elements are needed.
- For the pair of arrays $([2, 1], [3, 2])$ , the answer is $0$ . The elements of the first array can be rearranged to obtain $[1, 2)$ . No operations are needed.
- For the pair of arrays $([3, 1], [3, 2])$ , the answer is $1$ . The element $3$ can be removed from the first array and the element $2$ can be removed from the second array.
- For the pair of arrays $([4, 1], [3, 2])$ , the answer is $1$ . The element $4$ can be removed from the first array and the element $3$ can be removed from the second array.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted