0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 04:25:25 +00:00
OI-codes/Codeforces/1589/C/C.cpp
2022-04-01 18:33:24 +08:00

27 lines
541 B
C++

#include <bits/stdc++.h>
using namespace std;
int t, n, a[105], b[105];
int main() {
cin >> t;
while (t--) {
bool flag = true;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < n; i++) {
cin >> b[i];
}
sort(a, a + n);
sort(b, b + n);
for (int i = 0; i < n; i++) {
if (b[i] - a[i] > 1 || b[i] - a[i] < 0) flag = false;
}
cout << (flag ? "YES" : "NO") << endl;
}
return 0;
}