CodeForces 340A The Wall

A. The Wall
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Iahub and his friend Floyd have started painting a wall. Iahub is painting the wall red and Floyd is painting it pink. You can consider the wall being made of a very large number of bricks, numbered 123 and so on. 

Iahub has the following scheme of painting: he skips x - 1 consecutive bricks, then he paints the x-th one. That is, he'll paint bricks xxx and so on red. Similarly, Floyd skips y - 1 consecutive bricks, then he paints the y-th one. Hence he'll paint bricks yyyand so on pink.

After painting the wall all day, the boys observed that some bricks are painted both red and pink. Iahub has a lucky number a and Floyd has a lucky number b. Boys wonder how many bricks numbered no less than a and no greater than b are painted both red and pink. This is exactly your task: compute and print the answer to the question. 

Input

The input will have a single line containing four integers in this order: xyab. (1 ≤ x, y ≤ 10001 ≤ a, b ≤ 2·109a ≤ b).

Output

Output a single integer — the number of bricks numbered no less than a and no greater than b that are painted both red and pink.

Sample test(s)
input
2 3 6 18
output
3
Note

Let's look at the bricks from a to b (a = 6, b = 18). The bricks colored in red are numbered 6, 8, 10, 12, 14, 16, 18. The bricks colored in pink are numbered 6, 9, 12, 15, 18. The bricks colored in both red and pink are numbered with 6, 12 and 18.


大致题意是找出a到b中既能被x整除又能被y整除的数的个数


一般想法是从a扫到b,如果 (i mod a == 0 && i mod b == 0) ,那么计数器加一

但是可以看到数据范围给得很大,a和b的差值可能高达2×10^9,这样的话TLE是显然的╮(╯▽╰)╭


我的想法是找出a和b的最小公倍数LCM(a, b)

假设x为大于等于a的最小的LCM(a, b)的倍数

用b-x除LCM(a, b)就是满足条件的整数的个数


至于其它细节么,仔细处理就行了


代码如下:


#include<iostream>
#include<string>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

int main() {
  int x, y;
  long long a, b, cnt = 0;
  cin >> x >> y >> a >> b;
  
  long long mul = x*y;
  
  for (int i = max(x,y); i <= x*y; i++)
    if (i%x == 0 && i%y == 0) { mul = i; break; }
  //cout << mul << endl;
  
  long long pos;
  if (a%mul == 0) pos = a;
  else pos = (a/mul+1)*mul;
  
  if (pos > b) cnt = 0;
  else cnt = (b-pos)/mul+1;
  cout << cnt << endl;
  return 0;
}


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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值