-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFermeture annuelle.cpp
48 lines (41 loc) · 1.11 KB
/
Fermeture annuelle.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
#include "bits/stdc++.h"
using namespace std;
bool compare(pair<int, int> &a, pair<int, int> &b) {
if (a.first == b.first) return a.second < b.second;
return a.first < b.first;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int maxA, nbF, maxInactif;
cin >> maxA >> nbF;
vector<pair<int, int>> I, newI;
for (int i = 0; i < nbF; ++i) {
int D, F;
cin >> D >> F;
if (D > F) {
I.emplace_back(0, F);
I.emplace_back(D, maxA);
} else
I.emplace_back(D, F);
}
sort(I.begin(), I.end(), compare);
auto index = I.begin() + 1;
newI.push_back(I.front());
while (index != I.end()) {
if (index->first <= newI.back().second)
newI.back().second = max(index->second, newI.back().second);
else
newI.push_back(*index);
index++;
}
index = newI.begin() + 1;
maxInactif = maxA - newI.back().second + newI.front().first;
while (index != newI.end()) {
maxInactif = max(maxInactif, index->first - (index - 1)->second);
index++;
}
cout << maxInactif;
return 0;
}