比赛 2024暑假C班集训E 评测结果 AAAATTTTTT
题目名称 Swapity Swapity Swap 最终得分 40
用户昵称 袁书杰 运行时间 12.081 s
代码语言 C++ 内存使用 3.42 MiB
提交时间 2024-07-14 10:42:59
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,k,a[100005],b[100005],l[100005],r[100005],tot;
int main() {
    freopen("usaco_Feb_swap.in","r",stdin);
    freopen("usaco_Feb_swap.out","w",stdout);
	ios::sync_with_stdio(false);
	cin.tie(0),cout.tie(0);
	cin>>n>>m>>k;
	for(int i=1; i<=n; i++) {
		b[i]=i;
	}
	for(int i=1; i<=m; i++) {
		cin>>l[i]>>r[i];
	}
	while(k--) {
		for(int i=1; i<=m; i++) {
			reverse(b+l[i],b+r[i]+1);
		}
	}
	for(int i=1; i<=n; i++) {
	    cout<<b[i]<<'\n';
	}
	return 0;
}