B. Friends and Presents(Codeforces Round #275(div2)

来源:互联网 发布:网络舆论害死人的事例 编辑:程序博客网 时间:2024/05/20 13:15
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.


以为有什么数学公式的。。一直在推数学公式。结果白白浪费掉时间,真心悲剧。想模拟绝对超时。然后就没向着二分想,看起来以后要多做一下二分的题目了。

#include<iostream>#include<string>#include<algorithm>#include<cstdlib>#include<cstdio>#include<set>#include<map>#include<vector>#include<cstring>#include<stack>#include<cmath>#include<queue>#define INF 0x0f0f0f0fusing namespace std;long long int cnt1,cnt2,x,y,m,n,ct1,ct2,ct3,t1,t2,t3,t,ans,l,r;long long int gcd(long long int x,long long int y)   {int m;if(x<y)return gcd(y,x);if(x%y!=0)return gcd(y,x%y);else return y;}bool judge(long long int a){t1=a/x;t2=a/y;t3=a/(x*y/m);ct1=(cnt1-t2+t3>0?cnt1-t2+t3:0);ct2=(cnt2-t1+t3>0?cnt2-t1+t3:0);ct3=(a-t1-t2+t3>0?a-t1-t2+t3:0);if(ct3>=ct1+ct2)return 1;elsereturn 0;}int main(){int i,j,k;scanf("%I64d %I64d %I64d %I64d",&cnt1,&cnt2,&x,&y);m=gcd(x,y);l=1;r=2000000000;ans=0;while(l<r){n=(l+r)/2;if(judge(n)){ans=n;r=n;}else{l=n+1;}}printf("%I64d\n",ans);return 0;}


0 0
原创粉丝点击