0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 18:08:47 +00:00

1981 - 铁憨憨骑士团的缎带分配

77470
This commit is contained in:
Baoshuo Ren 2022-09-12 21:35:18 +08:00
parent 6746568778
commit d4e5d47133
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

30
bjtu/1981/1981.cpp Normal file
View File

@ -0,0 +1,30 @@
#include <iostream>
#include <algorithm>
#include <utility>
using std::cin;
using std::cout;
const char endl = '\n';
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
while (n--) {
std::pair<int, int> p[2];
for (int i = 0; i < 2; i++) {
cin >> p[i].first >> p[i].second;
}
std::sort(p, p + 2);
cout << (p[1].first < p[0].second ? "YES" : "NO") << endl;
}
return 0;
}