#P9185. [USACO23OPEN] Rotate and Shift B

[USACO23OPEN] Rotate and Shift B

题目描述

Note: The time limit for this problem is 4s, 2x the default.

To celebrate the start of spring, Farmer John's NN cows have invented an intriguing new dance, where they stand in a circle and re-order themselves in a predictable way.

Specifically, there are NN positions around the circle, numbered sequentially from 00 to N1N-1, with position 00 following position N1N-1. A cow resides at each position. The cows are also numbered sequentially from 00 to N1N-1. Initially, cow ii starts in position ii. You are told a set of KK positions 0=A1<A2<<AK<N0=A_1<A_2<\dots<A_K<N that are "active", meaning the cows in these positions are the next to move.

In each minute of the dance, two things happen. First, the cows in the active positions rotate: the cow at position A1A_1 moves to position A2A_2, the cow at position A2A_2 moves to position A3A_3, and so on, with the cow at position AKA_K moving to position A1A_1. All of these KK moves happen simultaneously, so the after the rotation is complete, all of the active positions still contain exactly one cow. Next, the active positions themselves shift: A1A_1 becomes A1+1A_1+1, A2A_2 becomes A2+1A_2+1, and so on (if Ai=N1A_i = N-1 for some active position, then AiA_i circles back around to 00).

Please calculate the order of the cows after TT minutes of the dance.

输入格式

The first line contains three integers N,KN, K and TT.

The second line contains KK integers representing the initial set of active positions A1,A2,,AKA_1,A_2, \dots, A_K. Recall that A1=0A_1 = 0 and that these are given in increasing order.

输出格式

Output the order of the cows after TT minutes, starting with the cow in position 00, separated by spaces.

题目大意

题目描述

注意:本题的时间限制为 4 秒,是默认时间限制的 2 倍。

为了庆祝春天的到来,Farmer John 的 NN 头奶牛发明了一种有趣的舞蹈,她们围成一个圆圈,并以一种可预测的方式重新排列自己。

具体来说,圆圈上有 NN 个位置,编号从 00N1N-1,其中位置 00 紧接着位置 N1N-1。每个位置上有一头奶牛。奶牛的编号也从 00N1N-1。初始时,奶牛 ii 位于位置 ii。你会被告知一组 KK 个“活跃”位置 0=A1<A2<<AK<N0 = A_1 < A_2 < \dots < A_K < N,这意味着这些位置上的奶牛是下一批要移动的。

在舞蹈的每一分钟,会发生两件事。首先,活跃位置上的奶牛会旋转:位置 A1A_1 的奶牛移动到位置 A2A_2,位置 A2A_2 的奶牛移动到位置 A3A_3,依此类推,位置 AKA_K 的奶牛移动到位置 A1A_1。所有这些 KK 次移动同时发生,因此在旋转完成后,所有活跃位置仍然恰好有一头奶牛。接下来,活跃位置本身会移动:A1A_1 变为 A1+1A_1 + 1A2A_2 变为 A2+1A_2 + 1,依此类推(如果某个活跃位置 Ai=N1A_i = N-1,则 AiA_i 会循环回到 00)。

请计算舞蹈进行 TT 分钟后奶牛的顺序。

输入格式

第一行包含三个整数 NNKKTT

第二行包含 KK 个整数,表示初始的活跃位置 A1,A2,,AKA_1, A_2, \dots, A_K。注意 A1=0A_1 = 0,并且这些位置是按递增顺序给出的。

输出格式

输出 TT 分钟后奶牛的顺序,从位置 00 的奶牛开始,用空格分隔。

提示

对于上述样例,以下是前四个时间步的奶牛顺序和活跃位置 AA

初始,T = 0:顺序 = [0 1 2 3 4],A = [0 2 3]
T = 1:顺序 = [3 1 0 2 4]
T = 1:A = [1 3 4]
T = 2:顺序 = [3 4 0 1 2]
T = 2:A = [2 4 0]
T = 3:顺序 = [2 4 3 1 0]
T = 3:A = [3 0 1]
T = 4:顺序 = [1 2 3 4 0]

1KN21051 \leq K \leq N \leq 2 \cdot 10^51T1091 \leq T \leq 10^9

  • 输入 2-7:N1000N \leq 1000T10000T \leq 10000
  • 输入 8-13:没有额外限制。
5 3 4
0 2 3

1 2 3 4 0

提示

For the example above, here are the cow orders and AA for the first four timesteps:

Initial, T = 0: order = [0 1 2 3 4], A = [0 2 3]
T = 1: order = [3 1 0 2 4]
T = 1: A = [1 3 4]
T = 2: order = [3 4 0 1 2]
T = 2: A = [2 4 0]
T = 3: order = [2 4 3 1 0]
T = 3: A = [3 0 1]
T = 4: order = [1 2 3 4 0]

1KN21051 \leq K \leq N \leq 2 \cdot 10^5, 1T1091\le T\le 10^9.

  • Inputs 2-7: N1000,T10000N \leq 1000, T \leq 10000.
  • Inputs 8-13: No additional constraints.