[原创]codeforces 710D Two Arithmetic Progressions [同余方程]【数论】
[原创]codeforces 710D Two Arithmetic Progressions [同余方程]【数论】
2016-08-24 17:32:54 Tabris_ 阅读数:695
博客爬取于2020-06-14 22:43:42
以下为正文
版权声明:本文为Tabris原创文章,未经博主允许不得私自转载。
https://blog.csdn.net/qq_33184171/article/details/52302558
题目链接:http://codeforces.com/problemset/problem/710/D
--------------------------.
D. Two Arithmetic Progressions
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are given two arithmetic progressions: a1k + b1 and a2l + b2. Find the number of integers x such that L ≤ x ≤ R and x = a1k’ + b1 = a2l’ + b2, for some integers k’, l’ ≥ 0.
Input
The only line contains six integers a1, b1, a2, b2, L, R (0 < a1, a2 ≤ 2·109, - 2·109 ≤ b1, b2, L, R ≤ 2·109, L ≤ R).
Output
Print the desired number of integers x.
Examples
input
2 0 3 3 5 21
output
3
input
2 4 3 0 6 17
output
2
-----------------------------.
题目大意 :
就是给你a1, b1, a2, b2, L, R 在区间L~R找一个x 使得a1k’ + b1 = a2l’ + b2 问能找到的x的个数
解题思路 :
根据题意 很明显的同余方程
x= b1 (mod a1);
x= b2 (mod a2);
然后解得x的最小正整数解之后 每次加上 lcm(a1,a2) 一直从l到r 这部分直接计算就能够得出
值得注意的是l与 b1,b2 的大小有关 在计算的时候l应取三者最大值;
Ps:题目很坑的是有负数的情况 也是赛后看了题解才知道。。
附本题代码
-----------------------------------.
1 | # include <bits/stdc++.h> |