#P3708. Recurrent Function
Recurrent Function
Description
Dr. Yao is involved in a secret research on the topic of the properties of recurrent function. Some of the functions in this research are in the following pattern:
in which set {ai} = {1, 2, …, d-1} and {bi} = {0, 1, …, d-1}.
We denote:
Yao's question is that, given two positive integer m and k, could you find a minimal non-negative integer x that
Input
There are several test cases. The first line of each test case contains an integer d (2≤d≤100). The second line contains 2d-1 integers: a1, …, ad-1, followed by b0, ..., bd-1. The third line contains integer m (0<m≤10100), and the forth line contains integer k (0<k≤10100). The input file ends with integer -1.
Output
For each test case if it exists such an integer x, output the minimal one. We guarantee the answer is less than 263. Otherwise output a word "NO".
2
1
1 0
4
7
2
1
0 1
100
200
-1
1
NO
Hint
For the first sample case, we can see that f(4)=7. And for the second one, the function is f(i)=i.
Source
POJ Founder Monthly Contest – 2008.12.28, Yaojinyu