Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register
Language:
Java Certification
Time Limit: 5000MSMemory Limit: 65536K
Total Submissions: 269Accepted: 51Special Judge

Description

You have just completed Java Certification exam that contained n questions. You have a score card that explains your performance. The example of the scorecard is given below.

You have correctly answered 78 questions out of 87.
Basic Concepts100%
Declarations100%
Expressions83%
Classes and Interfaces92%
Multithreading75%
Collections93%


From this scorecard you can infer that the questions are broken down into m categories (in the above example m = 6). Each category contains ni questions (1 <= ni <= n), so that \sum\limits_{i = 1}^m {n_i}=n. You know that you have correctly answered k questions out of n (in the above example k = 78 and n = 87), so you can easily find the number of incorrect answers w = n - k (in the above example w = 9).
You do remember several questions that you were unsure about and you can guess what category they belong to. To figure out if your answers on those questions were right or wrong, you really want to know how many incorrect answers you have given in each category.
Let wi (0 <= wi <= ni) be the number of incorrect answers in i-th category, \sum\limits_{i = 1}^m {w_i}=w. From the scorecard you know the percentage of correct answers in each category. That is, for each i from 1 to m you know the value of 100(ni - wi)/ni rounded to the nearest integer. The value with a fractional part of 0.5 is rounded to the nearest even integer.
It may not be possible to uniquely find the valid values for wi. However, you guess that the questions are broken down into categories in a mostly uniform manner. You have to find the valid values of wi and ni, so that to minimize the difference between the maximum value of ni and the minimum value of ni. If there are still multiple possible values for wi and ni, then find any of them.

Input

The first line of the input file contains three integer numbers - k, n, and m, where k (0 <= k <= n) is the number of correctly answered questions, n (1 <= n <= 100) is the total number of questions, m (1 <= m <= 10) is the number of question categories. The following m lines of the input file contain one integer number from 0 to 100 (inclusive) on a line - percentages of the number of the correct answers in each category. The input file always corresponds to some valid set of wi and ni.

Output

Write to the output file m lines with two integer numbers wi and ni on a line, separated by a space - the number of incorrect answers and the total number of questions in each category, satisfying constraints as given in the problem statement.

Sample Input

78 87 6
100
100
83
92
75
93

Sample Output

0 13
0 13
3 18
1 13
4 16
1 14

Source

[Submit]   [Go Back]   [Status]   [Discuss]

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator