#KEYENCE2019C. Exam and Wizard

Exam and Wizard

Score : 400400 points

Problem Statement

A university student, Takahashi, has to take NN examinations and pass all of them. Currently, his readiness for the ii-th examination is AiA_{i}, and according to his investigation, it is known that he needs readiness of at least BiB_{i} in order to pass the ii-th examination.

Takahashi thinks that he may not be able to pass all the examinations, and he has decided to ask a magician, Aoki, to change the readiness for as few examinations as possible so that he can pass all of them, while not changing the total readiness.

For Takahashi, find the minimum possible number of indices ii such that AiA_i and CiC_i are different, for a sequence C1,C2,...,CNC_1, C_2, ..., C_{N} that satisfies the following conditions:

  • The sum of the sequence A1,A2,...,ANA_1, A_2, ..., A_{N} and the sum of the sequence C1,C2,...,CNC_1, C_2, ..., C_{N} are equal.
  • For every ii, BiCiB_i \leq C_i holds.

If such a sequence C1,C2,...,CNC_1, C_2, ..., C_{N} cannot be constructed, print 1-1.

Constraints

  • 1N1051 \leq N \leq 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • 1Bi1091 \leq B_i \leq 10^9
  • AiA_i and BiB_i are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 ...... ANA_{N}

B1B_1 B2B_2 ...... BNB_{N}

Output

Print the minimum possible number of indices ii such that AiA_i and CiC_i are different, for a sequence C1,C2,...,CNC_1, C_2, ..., C_{N} that satisfies the conditions. If such a sequence C1,C2,...,CNC_1, C_2, ..., C_{N} cannot be constructed, print 1-1.

3
2 3 5
3 4 1
3

(A1,A2,A3)=(2,3,5)(A_1, A_2, A_3) = (2, 3, 5) and (B1,B2,B3)=(3,4,1)(B_1, B_2, B_3) = (3, 4, 1). If nothing is done, he cannot pass the first and second exams. The minimum possible number of indices ii such that AiA_i and CiC_i are different, 33, is achieved when:

  • (C1,C2,C3)=(3,5,2)(C_1, C_2, C_3) = (3, 5, 2)
3
2 3 3
2 2 1
0

In this case, he has to do nothing in order to pass all the exams.

3
17 7 1
25 6 14
-1

In this case, no matter what is done, he cannot pass all the exams.

12
757232153 372327760 440075441 195848680 354974235 458054863 463477172 740174259 615762794 632963102 529866931 64991604
74164189 98239366 465611891 362739947 147060907 118867039 63189252 78303147 501410831 110823640 122948912 572905212
5