A13421 | Nastya and Rice
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Nastya just made a huge mistake and dropped a whole package of rice on the floor. Mom will come soon. If she sees this, then Nastya will be punished.
In total, Nastya dropped $n$ grains. Nastya read that each grain weighs some integer number of grams from $a - b$ to $a + b$ , inclusive (numbers $a$ and $b$ are known), and the whole package of $n$ grains weighs from $c - d$ to $c + d$ grams, inclusive (numbers $c$ and $d$ are known). The weight of the package is the sum of the weights of all $n$ grains in it.
Help Nastya understand if this information can be correct. In other words, check whether each grain can have such a mass that the $i$ -th grain weighs some integer number $x_i$ $(a - b \leq x_i \leq a + b)$ , and in total they weigh from $c - d$ to $c + d$ , inclusive ( $c - d \leq \sum\limits_{i=1}^{n}{x_i} \leq c + d$ ).
In total, Nastya dropped $n$ grains. Nastya read that each grain weighs some integer number of grams from $a - b$ to $a + b$ , inclusive (numbers $a$ and $b$ are known), and the whole package of $n$ grains weighs from $c - d$ to $c + d$ grams, inclusive (numbers $c$ and $d$ are known). The weight of the package is the sum of the weights of all $n$ grains in it.
Help Nastya understand if this information can be correct. In other words, check whether each grain can have such a mass that the $i$ -th grain weighs some integer number $x_i$ $(a - b \leq x_i \leq a + b)$ , and in total they weigh from $c - d$ to $c + d$ , inclusive ( $c - d \leq \sum\limits_{i=1}^{n}{x_i} \leq c + d$ ).
输入格式
The input consists of multiple test cases. The first line contains a single integer $t$ $(1 \leq t \leq 1000)$ — the number of test cases.
The next $t$ lines contain descriptions of the test cases, each line contains $5$ integers: $n$ $(1 \leq n \leq 1000)$ — the number of grains that Nastya counted and $a, b, c, d$ $(0 \leq b < a \leq 1000, 0 \leq d < c \leq 1000)$ — numbers that determine the possible weight of one grain of rice (from $a - b$ to $a + b$ ) and the possible total weight of the package (from $c - d$ to $c + d$ ).
The next $t$ lines contain descriptions of the test cases, each line contains $5$ integers: $n$ $(1 \leq n \leq 1000)$ — the number of grains that Nastya counted and $a, b, c, d$ $(0 \leq b < a \leq 1000, 0 \leq d < c \leq 1000)$ — numbers that determine the possible weight of one grain of rice (from $a - b$ to $a + b$ ) and the possible total weight of the package (from $c - d$ to $c + d$ ).
输出格式
For each test case given in the input print "Yes", if the information about the weights is not inconsistent, and print "No" if $n$ grains with masses from $a - b$ to $a + b$ cannot make a package with a total mass from $c - d$ to $c + d$ .
输入输出样例
输入 #1
5 7 20 3 101 18 11 11 10 234 2 8 9 7 250 122 19 41 21 321 10 3 10 8 6 1
输出 #1
Yes No Yes No Yes
In the first test case of the example, we can assume that each grain weighs $17$ grams, and a pack $119$ grams, then really Nastya could collect the whole pack.
In the third test case of the example, we can assume that each grain weighs $16$ grams, and a pack $128$ grams, then really Nastya could collect the whole pack.
In the fifth test case of the example, we can be assumed that $3$ grains of rice weigh $2$ , $2$ , and $3$ grams, and a pack is $7$ grams, then really Nastya could collect the whole pack.
In the second and fourth test cases of the example, we can prove that it is impossible to determine the correct weight of all grains of rice and the weight of the pack so that the weight of the pack is equal to the total weight of all collected grains.
In the third test case of the example, we can assume that each grain weighs $16$ grams, and a pack $128$ grams, then really Nastya could collect the whole pack.
In the fifth test case of the example, we can be assumed that $3$ grains of rice weigh $2$ , $2$ , and $3$ grams, and a pack is $7$ grams, then really Nastya could collect the whole pack.
In the second and fourth test cases of the example, we can prove that it is impossible to determine the correct weight of all grains of rice and the weight of the pack so that the weight of the pack is equal to the total weight of all collected grains.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted