CF1114E Arithmetic Progression

Description

This is an interactive problem! An arithmetic progression or arithmetic sequence is a sequence of integers such that the subtraction of element with its previous element ( $ x_i - x_{i - 1} $ , where $ i \ge 2 $ ) is constant — such difference is called a common difference of the sequence. That is, an arithmetic progression is a sequence of form $ x_i = x_1 + (i - 1) d $ , where $ d $ is a common difference of the sequence. There is a secret list of $ n $ integers $ a_1, a_2, \ldots, a_n $ . It is guaranteed that all elements $ a_1, a_2, \ldots, a_n $ are between $ 0 $ and $ 10^9 $ , inclusive. This list is special: if sorted in increasing order, it will form an arithmetic progression with positive common difference ( $ d > 0 $ ). For example, the list $ [14, 24, 9, 19] $ satisfies this requirement, after sorting it makes a list $ [9, 14, 19, 24] $ , which can be produced as $ x_n = 9 + 5 \cdot (n - 1) $ . Also you are also given a device, which has a quite discharged battery, thus you can only use it to perform at most $ 60 $ queries of following two types: - Given a value $ i $ ( $ 1 \le i \le n $ ), the device will show the value of the $ a_i $ . - Given a value $ x $ ( $ 0 \le x \le 10^9 $ ), the device will return $ 1 $ if an element with a value strictly greater than $ x $ exists, and it will return $ 0 $ otherwise. Your can use this special device for at most $ 60 $ queries. Could you please find out the smallest element and the common difference of the sequence? That is, values $ x_1 $ and $ d $ in the definition of the arithmetic progression. Note that the array $ a $ is not sorted.

Input Format

N/A

Output Format

N/A

Explanation/Hint

Note that the example interaction contains extra empty lines so that it's easier to read. The real interaction doesn't contain any empty lines and you shouldn't print any extra empty lines as well. The list in the example test is $ [14, 24, 9, 19] $ .