A11974 | Buying a TV Set
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Monocarp has decided to buy a new TV set and hang it on the wall in his flat. The wall has enough free space so Monocarp can buy a TV set with screen width not greater than $a$ and screen height not greater than $b$ . Monocarp is also used to TV sets with a certain aspect ratio: formally, if the width of the screen is $w$ , and the height of the screen is $h$ , then the following condition should be met: $\frac{w}{h} = \frac{x}{y}$ .
There are many different TV sets in the shop. Monocarp is sure that for any pair of positive integers $w$ and $h$ there is a TV set with screen width $w$ and height $h$ in the shop.
Monocarp isn't ready to choose the exact TV set he is going to buy. Firstly he wants to determine the optimal screen resolution. He has decided to try all possible variants of screen size. But he must count the number of pairs of positive integers $w$ and $h$ , beforehand, such that $(w \le a)$ , $(h \le b)$ and $(\frac{w}{h} = \frac{x}{y})$ .
In other words, Monocarp wants to determine the number of TV sets having aspect ratio $\frac{x}{y}$ , screen width not exceeding $a$ , and screen height not exceeding $b$ . Two TV sets are considered different if they have different screen width or different screen height.
There are many different TV sets in the shop. Monocarp is sure that for any pair of positive integers $w$ and $h$ there is a TV set with screen width $w$ and height $h$ in the shop.
Monocarp isn't ready to choose the exact TV set he is going to buy. Firstly he wants to determine the optimal screen resolution. He has decided to try all possible variants of screen size. But he must count the number of pairs of positive integers $w$ and $h$ , beforehand, such that $(w \le a)$ , $(h \le b)$ and $(\frac{w}{h} = \frac{x}{y})$ .
In other words, Monocarp wants to determine the number of TV sets having aspect ratio $\frac{x}{y}$ , screen width not exceeding $a$ , and screen height not exceeding $b$ . Two TV sets are considered different if they have different screen width or different screen height.
输入格式
The first line contains four integers $a$ , $b$ , $x$ , $y$ ( $1 \le a, b, x, y \le 10^{18}$ ) — the constraints on the screen width and height, and on the aspect ratio.
输出格式
Print one integer — the number of different variants to choose TV screen width and screen height so that they meet the aforementioned constraints.
输入输出样例
输入 #1
17 15 5 3
输出 #1
3
输入 #2
14 16 7 22
输出 #2
0
输入 #3
4 2 6 4
输出 #3
1
输入 #4
1000000000000000000 1000000000000000000 999999866000004473 999999822000007597
输出 #4
1000000063
In the first example, there are $3$ possible variants: $(5, 3)$ , $(10, 6)$ , $(15, 9)$ .
In the second example, there is no TV set meeting the constraints.
In the third example, there is only one variant: $(3, 2)$ .
In the second example, there is no TV set meeting the constraints.
In the third example, there is only one variant: $(3, 2)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted