A12413 | System Testing
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted