|
|||
Complete Naebbirac's SequenceNaebbirac is a young and easy-to-get-bored sailor. He likes sequences of integers and to come up with ways to classify them. Naebbirac says that a sequence is complete for a chosen integer K if the sequence only contains integers between 1 and K, and each integer between 1 and K appears the same number of times (or not at all). Based on that, Naebbirac created a game to entertain himself and his peers when the waters calm down and there's not much they can do to spend their time in the middle of the ocean. First, he chooses a positive integer K, and then he uses chalk to draw on the deck a sequence S having N integers between 1 and K. After that, he challenges one of his peers. The goal of the challenged peer is to turn the sequence S into a complete sequence by performing exactly one of the following three possible operations:
Naebbirac is quite smart. He never writes a sequence that is already complete and often the written integers don't follow a pattern, making it quite hard to find an operation that solves the puzzle. One of your friends, who usually sails with Naebbirac, is tired of always losing the game. Are you able to help your friend and create a computer program that can find a solution to Naebbirac's game before they go on their next trip? Input SpecificationThe first line contains two integers K (3 ≤ K ≤ 1000) and N (1 ≤ N ≤ 104), indicating respectively the integer that Naebbirac chooses at the beginning of the game and the length of the sequence written on the deck. The second line contains N integers S1, S2, …, SN (1 ≤ Si ≤ K for i = 1, 2, …, N) representing the written sequence; you can safely assume that the sequence is not complete. Output Specification
Output a single line with the description of the operation that allows your friend to win the
game or an “ Sample Input 1
Output for Sample Input 1
Sample Input 2
Output for Sample Input 2
Sample Input 3
Output for Sample Input 3
Sample Input 4
Output for Sample Input 4
|
|||
University of Debrecen; Faculty of Informatics; v. 09/30/2024 |