diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-07-15 18:34:14 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-07-15 18:34:14 +0200 |
| commit | 51c35987f270f7a19d83a11b2427a9ff7803e17c (patch) | |
| tree | dab8e1690a399b713023a9cdc22ca7ffff86f922 /MarkThePhotographer/main.cpp | |
| parent | 0dff824a69c41aea4d4d54017360a368d0c6602f (diff) | |
| download | competitive-programming-51c35987f270f7a19d83a11b2427a9ff7803e17c.tar.xz competitive-programming-51c35987f270f7a19d83a11b2427a9ff7803e17c.zip | |
Solved a couple of problems on codeforces
Diffstat (limited to 'MarkThePhotographer/main.cpp')
| -rw-r--r-- | MarkThePhotographer/main.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/MarkThePhotographer/main.cpp b/MarkThePhotographer/main.cpp new file mode 100644 index 0000000..15c4e29 --- /dev/null +++ b/MarkThePhotographer/main.cpp @@ -0,0 +1,31 @@ +#include <bits/stdc++.h> + +using namespace std; + +int main() { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while (tt--) { + int n, y; + cin >> n >> y; + vector<int> v(2 * n); + int ans = 0; + for (int &x : v) + cin >> x; + sort(v.begin(), v.end()); + for (int i = 0; i < n; i++) { + int x = v[i]; + int z = v[i + n]; + if (z - x >= y) { + ans++; + } + } + if (ans == n) { + cout << "YES" << '\n'; + } else { + cout << "NO" << '\n'; + } + } +} |
