codeforces Round #275(div2) B解题报告

B. Friends and Presents
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You have two friends. You want to present each of them several positive integers. You want to present cnt1 numbers to the first friend andcnt2 numbers to the second friend. Moreover, you want all presented numbers to be distinct, that also means that no number should be presented to both friends.

In addition, the first friend does not like the numbers that are divisible without remainder by prime number x. The second one does not like the numbers that are divisible without remainder by prime number y. Of course, you're not going to present your friends numbers they don't like.

Your task is to find such minimum number v, that you can form presents using numbers from a set 1, 2, ..., v. Of course you may choose not to present some numbers at all.

A positive integer number greater than 1 is called prime if it has no positive divisors other than 1 and itself.

Input

The only line contains four positive integers cnt1cnt2xy (1 ≤ cnt1, cnt2 < 109cnt1 + cnt2 ≤ 1092 ≤ x < y ≤ 3·104) — the numbers that are described in the statement. It is guaranteed that numbers xy are prime.

Output

Print a single integer — the answer to the problem.

Sample test(s)
input
3 1 2 3
output
5
input
1 3 2 3
output
4
Note

In the first sample you give the set of numbers {1, 3, 5} to the first friend and the set of numbers {2} to the second friend. Note that if you give set {1, 3, 5} to the first friend, then we cannot give any of the numbers 135 to the second friend.

In the second sample you give the set of numbers {3} to the first friend, and the set of numbers {1, 2, 4} to the second friend. Thus, the answer to the problem is 4.

题目大意:

构造出两个序列,第一个序列要有cnt1个,其中不能有x的倍数,第二个序列要有cnt2个,其中不能有y的倍数。要求求出这两个序列中的最大数的最小值。

解法:

我们可以发现,如若最大数为k,则k+1也可以符合要求,这是一个单调的,符合二分的基本性质。

然后我们再考虑如何判断某个最大数k是否符合题意即可

代码:

#include <iostream>
#define LL long long

using namespace std;

LL cnt1, cnt2, x, y;

void init() {
	cin >> cnt1 >> cnt2 >> x >> y;
}

LL have(LL n, LL x) {
	return n-n/x;
}

void solve() {
	LL l = 1, r = 2e9;

	while (l < r) {
		LL mid = (r+l)/2;

		if (cnt1 <= have(mid, x) && cnt2 <= have(mid, y) && cnt1+cnt2 <= have(mid, x*y))
			r = mid;
		else
			l = mid+1;
	}

	cout << l << endl;
}

int main() {
	init();
	solve();
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值