CF1599B.Restaurant Game
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Alice and Bob always had hard time choosing restaurant for the dinner. Previously they performed Eenie Meenie Miney Mo game, but eventually as their restaurant list grew, they had to create a new game. This new game starts as they write restaurant names on N cards and align the cards in one line. Before the game begins, they both choose starting card and starting direction they are going to. They take turns in order one after another. After each turn, they move one card in their current direction. If they reach the end or beginning of the line of cards they change direction. Once they meet in a card, the card is marked for removal and is removed the first moment they both leave the card.
Example of how card is removedThey repeat this process until there is only one restaurant card left. Since there are a lot of restaurant cards, they are bored to simulate this process over and over and need your help to determine the last card that remains. Can you help them?
输入格式
The first line of the input is one integer T ( 1 ≤ T ≤ 104 ) representing number of test cases. Each test case contains 3 lines: The first line contains an integer N representing initial number of cards. Next line contains two integer values A,B ( 0 ≤ A,B < N , 2 ≤ N ≤ 1018 ) representing starting 0-based index of the card in the array. Last line contains two strings DA,DB ∈ {"left", "right"} representing starting direction of their movement.
输出格式
The output contains T integer number – the 0-based index of the last card that remains for every test case in order.
输入输出样例
输入#1
1 4 0 1 left right
输出#1
0
说明/提示
Note that since Alice is starting at the beginning of the line even though her initial direction is left, on her next move she will go right.