比赛 |
2024暑假C班集训E |
评测结果 |
AAAATTTTTT |
题目名称 |
Swapity Swapity Swap |
最终得分 |
40 |
用户昵称 |
LikableP |
运行时间 |
12.409 s |
代码语言 |
C++ |
内存使用 |
3.41 MiB |
提交时间 |
2024-07-14 11:50:49 |
显示代码纯文本
#include <iostream>
#include <fstream>
#include <algorithm>
#define fo(i, l, r) for(int i = (l); i <= (r); i++)
using namespace std;
int n, m, k;
int L[110], R[110], a[100010];
int main(){
freopen("usaco_Feb_swap.in", "r", stdin);
freopen("usaco_Feb_swap.out", "w", stdout);
cin >> n >> m >> k;
fo(i, 1, n) a[i] = i;
fo(i, 1, m) cin >> L[i] >> R[i];
while(k--) fo(i, 1, m) reverse(a + L[i], a + R[i] + 1);
fo(i, 1, n) cout << a[i] << endl;
return 0;
}