303364: CF652F. Ants on a Circle

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Ants on a Circle

题意翻译

在一个长度为$m$的圆环上有$n$只初始位置互不相同的蚂蚁,每只蚂蚁的速度都为1,初始方向为顺时针或逆时针;两只运动方向不同的蚂蚁相遇时会调转方向(相遇位置不一定是整数),问$t$时间后每只蚂蚁的位置。

题目描述

$ n $ ants are on a circle of length $ m $ . An ant travels one unit of distance per one unit of time. Initially, the ant number $ i $ is located at the position $ s_{i} $ and is facing in the direction $ d_{i} $ (which is either L or R). Positions are numbered in counterclockwise order starting from some point. Positions of the all ants are distinct. All the ants move simultaneously, and whenever two ants touch, they will both switch their directions. Note that it is possible for an ant to move in some direction for a half of a unit of time and in opposite direction for another half of a unit of time. Print the positions of the ants after $ t $ time units.

输入输出格式

输入格式


The first line contains three integers $ n $ , $ m $ and $ t $ ( $ 2<=n<=3·10^{5},2<=m<=10^{9},0<=t<=10^{18} $ ) — the number of ants, the length of the circle and the number of time units. Each of the next $ n $ lines contains integer $ s_{i} $ and symbol $ d_{i} $ ( $ 1<=s_{i}<=m $ and $ d_{i} $ is either L or R) — the position and the direction of the $ i $ -th ant at the start. The directions L and R corresponds to the clockwise and counterclockwise directions, respectively. It is guaranteed that all positions $ s_{i} $ are distinct.

输出格式


Print $ n $ integers $ x_{j} $ — the position of the $ j $ -th ant after $ t $ units of time. The ants are numbered from $ 1 $ to $ n $ in order of their appearing in input.

输入输出样例

输入样例 #1

2 4 8
1 R
3 L

输出样例 #1

1 3

输入样例 #2

4 8 6
6 R
5 L
1 R
8 L

输出样例 #2

7 4 2 7

输入样例 #3

4 8 2
1 R
5 L
6 L
8 R

输出样例 #3

3 3 4 2

Input

题意翻译

在一个长度为$m$的圆环上有$n$只初始位置互不相同的蚂蚁,每只蚂蚁的速度都为1,初始方向为顺时针或逆时针;两只运动方向不同的蚂蚁相遇时会调转方向(相遇位置不一定是整数),问$t$时间后每只蚂蚁的位置。

加入题单

算法标签: