[UVA][塊狀鏈表] 11922 - Permutation Transformer
Permutation Transformer
Write a program to transform the permutation
1, 2, 3,..., n according to m instructions. Each instruction (a, b)
means to take out the subsequence from the a-th to the b-th element, reverse it, then append it to the end.
...