#Lutece0975. 寻找固定和

寻找固定和

Migrated from Lutece 975 寻找固定和

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

有两个数组xxyy,各有mmnn个元素,而且各个元素没有依顺序排列;dd是一个已知的值。请写一个程序,看看在xxyy中有没有满足xi+yj=dx_i+y_j=d的元素。

Input

本题有多组输入数据。第一行是输入数据的组数TT,每组数据占三行,第一行是三个用空格隔开的数mmnndd,表示下面两行xxyy数组的元素个数依次为mmnn个,以及固定和dd。紧接着两行分别是mmnn个元素,每个元素后均有一个空格。1T201\le T\le 201m,n10001\le m,n\le 1000

Output

对应每组数据,输出可能有多行,如果没有找到,输出为nothing,如果输出有多行,应先按xx的下标从小到大输出,若xx的下标相同,则按yy的下标从小到大输出。详细可参看样例。

Samples

2
4 4 9
3 7 2 4 
2 5 2 3 
4 3 15
1 2 3 4 
5 8 6
case 1:
x[1]+y[0]=9
x[1]+y[2]=9
x[3]+y[1]=9
case 2:
nothing

Resources

wxiaoping 2009年C语言第九次上机