0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:25:25 +00:00
OI-codes/Luogu/problem/P3391/P3391.cpp

22 lines
432 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
int main() {
vector<int> a;
int n, m, l, r;
scanf("%d%d", &n, &m);
for (int i = 0; i <= n; i++) {
a.push_back(i);
}
for (int i = 0; i < m; i++) {
scanf("%d%d", &l, &r);
reverse(a.begin() + l, a.begin() + r + 1);
}
for (int i = 1; i < a.size(); i++) {
printf("%d ", a[i]);
}
printf("\n");
return 0;
}