CF1344A Hilbert's Hotel

Description

Hilbert's Hotel is a very unusual hotel since the number of rooms is infinite! In fact, there is exactly one room for every integer, including zero and negative integers. Even stranger, the hotel is currently at full capacity, meaning there is exactly one guest in every room. The hotel's manager, David Hilbert himself, decides he wants to shuffle the guests around because he thinks this will create a vacancy (a room without a guest). For any integer $ k $ and positive integer $ n $ , let $ k\bmod n $ denote the remainder when $ k $ is divided by $ n $ . More formally, $ r=k\bmod n $ is the smallest non-negative integer such that $ k-r $ is divisible by $ n $ . It always holds that $ 0\le k\bmod n\le n-1 $ . For example, $ 100\bmod 12=4 $ and $ (-1337)\bmod 3=1 $ . Then the shuffling works as follows. There is an array of $ n $ integers $ a_0,a_1,\ldots,a_{n-1} $ . Then for each integer $ k $ , the guest in room $ k $ is moved to room number $ k+a_{k\bmod n} $ . After this shuffling process, determine if there is still exactly one guest assigned to each room. That is, there are no vacancies or rooms with multiple guests.

Input Format

N/A

Output Format

N/A

Explanation/Hint

In the first test case, every guest is shifted by $ 14 $ rooms, so the assignment is still unique. In the second test case, even guests move to the right by $ 1 $ room, and odd guests move to the left by $ 1 $ room. We can show that the assignment is still unique. In the third test case, every fourth guest moves to the right by $ 1 $ room, and the other guests move to the right by $ 5 $ rooms. We can show that the assignment is still unique. In the fourth test case, guests $ 0 $ and $ 1 $ are both assigned to room $ 3 $ . In the fifth test case, guests $ 1 $ and $ 2 $ are both assigned to room $ 2 $ .