怎么TLE了

djx CE小王子 2024-07-31 13:59:39 2
#include<bits/stdc++.h>

using namespace std;
const int N=1e5+10;
int a[N];
int main(){
	ios::sync_with_stdio(0);
	int n,m;
	cin>>n>>m;
	for(int i=1;i<=n;i++){
		a[i]=i;
	}
	for(int i=1;i<=m;i++){
		int l,r;
		cin>>l>>r;
		reverse(a+l,a+r+1);
	}
	for(int i=1;i<=n;i++) cout<<a[i]<<' ';
	return 0;
}
{{ vote && vote.total.up }}