Type: Default 1000ms 256MiB

最小差的绝对值

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

题面描述

给定两个长度分别为 nnmm 的正整数序列 aabb

从序列 aa 中任选一个元素, 从 bb 中任选一个元素, 求两元素差的绝对值的最小值

输入格式

第一行输入两个整数 n,mn, m

第二行输入 nn 个整数 aia_i

第三行输入 mm 个整数 bib_i

输出格式

输出最小的差的绝对值

样例 #1

样例输入 #1

2 2
1 6
4 9

样例输出 #1

2

样例 #2

样例输入 #2

1 1
10
10

样例输出 #2

0

提示

  • 1  n,m  2× 105 1\ \leq\ n, m\ \leq\ 2\times\ 10^5
  • 1  ai  109 1\ \leq\ a_i\ \leq\ 10^9
  • 1  bi  109 1\ \leq\ b_i\ \leq\ 10^9