#include #include #include bool solve() { int N; std::cin >> N; std::vector A(N), B(N); for (int &a : A) { std::cin >> a; } for (int &b : B) { std::cin >> b; } int max = 0; for (int i = 0; i < N; i++) { max = std::max(max, A[i]); if (i + 1 == N || B[i] != B[i + 1]) { if (max != B[i]) { return false; } max = 0; } } return true; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int T; std::cin >> T; while (T--) { std::cout << (solve() ? "Yes" : "No") << "\n"; } return 0; }