3473.Color the Fence

Time Limit: 1s Memory Limit: 256MB

Igor has fallen in love with Tanya. Now Igor wants to show his feelings and write a number on the fence opposite to Tanya's house. Igor thinks that the larger the number is, the more chance to win Tanya's heart he has.

Unfortunately, Igor could only get v liters of paint. He did the math and concluded that digit d requires ad liters of paint. Besides, Igor heard that Tanya doesn't like zeroes. That's why Igor won't use them in his number.

Help Igor find the maximum number he can write on the fence.

Input Format(From the terminal/stdin)

The first line contains a positive integer v (0 \le v \le 106). The second line contains nine positive integers a1,a2,...,a9 (1 \le ai \le 105).

Output Format(To the terminal/stdout)

Print the maximum number Igor can write on the fence. If he has too little paint for any digit (so, he cannot write anything), print -1.

Sample Input 1

Copy
5
5 4 3 2 1 2 3 4 5
 \n
 · · · · · · · · \n

Sample Output 1

Copy
55555
     \n

Sample Input 2

Copy
2
9 11 1 12 5 8 9 10 6
 \n
 ·  · ·  · · · ·  · \n

Sample Output 2

Copy
33
  \n

Sample Input 3

Copy
0
1 1 1 1 1 1 1 1 1
 \n
 · · · · · · · · \n

Sample Output 3

Copy
-1
  \n

Submit

请先 登录

© 2025 FAQs