This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define FF first
#define SS second
#define all(a) a.begin(), a.end()
#define mod (ll)(1000000007)
int main() {
ios_base::sync_with_stdio(0);cin.tie(0);
int n, m;
cin >> n >> m;
vector<int> All;
All.reserve(2 * n);
vector<array<int, 2>> A(n);
for (int i = 0; i < n; i++) {
cin >> A[i][0] >> A[i][1];
All.push_back(A[i][0]);
All.push_back(A[i][1]);
}
sort(all(All));
map<int, int> new_;
int cnt = 0;
for (int i = 0; i < All.size(); i++) {
if (!i || All[i] != All[i - 1]) {
new_[All[i]] = cnt++;
}
}
int sz = cnt;
for (int i = 0; i < n; i++) {
A[i][0] = new_[A[i][0]], A[i][1] = new_[A[i][1]];
}
int ans = n + 1;
for (int k = 0; k < n; k++) {
int cur = A[k][0];
vector<array<int, 2>> B = A;
vector<vector<int>> Events(sz + 1);
for (int i = 0; i < n; i++) {
if (A[i][0] >= cur) {
A[i][0] -= cur;
}
else {
A[i][0] += sz - cur;
}
if (A[i][1] >= cur) {
A[i][1] -= cur;
}
else {
A[i][1] += sz - cur;
}
if (A[i][0] > A[i][1]) {
A[i][1] = sz;
}
Events[A[i][0]].push_back(i);
Events[A[i][1]].push_back(i);
}
vector<int> Prf(sz + 1, n + 1), Suf(sz + 1, n + 1);
Prf[0] = 0;
int mx = 0;
for (int i = 0; i <= sz; i++) {
for (auto j : Events[i]) {
if (i == A[j][0]) {
mx = max(mx, A[j][1]);
}
}
Prf[mx] = min(Prf[mx], Prf[i] + 1);
}
Suf[sz] = 0;
int mn = sz;
for (int i = sz; i >= 0; i--) {
for (auto j : Events[i]) {
if (i == A[j][1]) {
mn = min(mn, A[j][1]);
}
}
Suf[mn] = min(Suf[mn], Suf[i] + 1);
}
for (int i = 1; i <= sz; i++) {
Suf[i] = min(Suf[i], Suf[i - 1]);
}
for (int i = sz - 1; i >= 0; i--) {
Prf[i] = min(Prf[i], Prf[i + 1]);
}
for (int i = 0; i <= sz; i++) {
ans = min(ans, Prf[i] + Suf[i]);
}
swap(A, B);
}
if (ans == n + 1) {
ans = -1;
}
cout << ans;
}
Compilation message (stderr)
Main.cpp: In function 'int main()':
Main.cpp:31:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for (int i = 0; i < All.size(); i++) {
| ~~^~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |