Advertisement
matheus_monteiro

Confronto de Horários

Apr 5th, 2025
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. #include "bits/stdc++.h"
  2.  
  3. using namespace std;
  4.  
  5. bool tem_sobreposicao(pair<int, int> a, pair<int, int> b) {
  6.     return a.first >= b.first && a.first < b.second ||
  7.             b.first >= a.first && b.first < a.second;
  8. }
  9.  
  10. int main() {
  11.     int n;
  12.     vector<pair<int, int>> v;
  13.  
  14.     cin >> n;
  15.     for(int i = 0; i < n; ++i) {
  16.         int x, y;
  17.         cin >> x >> y;
  18.         v.push_back(make_pair(x, y));
  19.     }
  20.  
  21.     for(int i = 0; i < n; ++i)
  22.         for(int j = 0; j < n; ++j)
  23.             if(i != j && tem_sobreposicao(v[i], v[j])) {
  24.                 cout << "YES\n";
  25.                 return 0;
  26.             }
  27.  
  28.     cout << "NO\n";
  29.  
  30.     return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement