305998: CF1121C. System Testing

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

System Testing

题目描述

Vasya likes taking part in Codeforces contests. When a round is over, Vasya follows all submissions in the system testing tab. There are $ n $ solutions, the $ i $ -th of them should be tested on $ a_i $ tests, testing one solution on one test takes $ 1 $ second. The solutions are judged in the order from $ 1 $ to $ n $ . There are $ k $ testing processes which test solutions simultaneously. Each of them can test at most one solution at a time. At any time moment $ t $ when some testing process is not judging any solution, it takes the first solution from the queue and tests it on each test in increasing order of the test ids. Let this solution have id $ i $ , then it is being tested on the first test from time moment $ t $ till time moment $ t + 1 $ , then on the second test till time moment $ t + 2 $ and so on. This solution is fully tested at time moment $ t + a_i $ , and after that the testing process immediately starts testing another solution. Consider some time moment, let there be exactly $ m $ fully tested solutions by this moment. There is a caption "System testing: $ d $ %" on the page with solutions, where $ d $ is calculated as $ $d = round\left(100\cdot\frac{m}{n}\right), $ $ </p><p>where $ round(x) = \\lfloor{x + 0.5}\\rfloor $ is a function which maps every real to the nearest integer.</p><p>Vasya calls a submission <span class="tex-font-style-it">interesting</span> if there is a time moment (possibly, non-integer) when the solution is being tested on some test $ q $ , and the caption says "System testing: $ q$%". Find the number of interesting solutions. Please note that in case when multiple processes attempt to take the first submission from the queue at the same moment (for instance, at the initial moment), the order they take the solutions does not matter.

输入输出格式

输入格式


The first line contains two positive integers $ n $ and $ k $ ( $ 1 \le n \le 1000 $ , $ 1 \le k \le 100 $ ) standing for the number of submissions and the number of testing processes respectively. The second line contains $ n $ positive integers $ a_1, a_2, \ldots, a_n $ ( $ 1 \le a_i \le 150 $ ), where $ a_i $ is equal to the number of tests the $ i $ -th submission is to be run on.

输出格式


Output the only integer — the number of interesting submissions.

输入输出样例

输入样例 #1

2 2
49 100

输出样例 #1

1

输入样例 #2

4 2
32 100 33 1

输出样例 #2

2

输入样例 #3

14 5
48 19 6 9 50 20 3 42 38 43 36 21 44 6

输出样例 #3

5

说明

Consider the first example. At time moment $ 0 $ both solutions start testing. At time moment $ 49 $ the first solution is fully tested, so at time moment $ 49.5 $ the second solution is being tested on the test $ 50 $ , and the caption says "System testing: $ 50 $ %" (because there is one fully tested solution out of two). So, the second solution is interesting. Consider the second example. At time moment $ 0 $ the first and the second solutions start testing. At time moment $ 32 $ the first solution is fully tested, the third solution starts testing, the caption says "System testing: $ 25 $ %". At time moment $ 32 + 24.5 = 56.5 $ the third solutions is being tested on test $ 25 $ , the caption is still the same, thus this solution is interesting. After that the third solution is fully tested at time moment $ 32 + 33 = 65 $ , the fourth solution is fully tested at time moment $ 65 + 1 = 66 $ . The captions becomes "System testing: $ 75 $ %", and at time moment $ 74.5 $ the second solution is being tested on test $ 75 $ . So, this solution is also interesting. Overall, there are two interesting solutions.

Input

暂时还没有翻译

加入题单

上一题 下一题 算法标签: