fork download
  1. # your code goes here
  2.  
  3.  
  4. t=int(input())
  5.  
  6. for i in range(t):
  7.  
  8.  
  9. n=int(input())
  10. a=list(map(int, input().split()))
  11. b=list(map(int, input().split()))
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. for j in range(n):
  19. if a[j]<b[j]:
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. a[j],b[j]=b[j],a[j]
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. if a[n-1]==max(a) and b[n-1] == max(b):
  35. print("Yes")
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46. else:
  47. print("No")
  48.  
  49.  
Success #stdin #stdout 0.03s 9888KB
stdin
7
3
7 9 7
7 6 9
4
10 10 15 15
10 16 15 15
2
100 99
99 100
1
1
1
9
1 2 3 4 5 6 7 8 9
9 9 9 9 9 9 6 6 6
7
1 1 2 2 1 1 2
1 2 1 2 1 2 1
2
30 4
5 30
stdout
Yes
No
Yes
Yes
Yes
No
No