-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1535A.cpp
48 lines (37 loc) · 962 Bytes
/
1535A.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//<<<<<<<<<<<<<Tushars_07>>>>>>>>>>>>>>>>
#include<bits/stdc++.h>
using namespace std;
bool func(vector<int> arr , int a , int b ){
if(arr[3]==max(a,b)){
if(arr[2]==min(a,b)){
return true ;
}
}
return false ;
}
#define lli long long int
#define ll long long
#define no cout<<"NO \n";
#define yes cout<<"YES \n";
#define test lli trtyuio ; cin>>trtyuio; while(trtyuio--)
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
test{
vector<int> arr;
for(int i = 0 ; i<4 ; i++){
int a ;
cin >> a ;
arr.push_back(a);
}
int a = max(arr[0],arr[1]);
int b = max(arr[2],arr[3]);
sort(arr.begin(),arr.end());
if(func(arr,a,b))
yes
else
no
}
return 0;
}
//<<<<<<<<<<Tushars_07>>>>>>>>>>>>>>>>