[lightoj P1306] Solutions to an Equation

You have to find the number of solutions of the following equation:

Ax + By + C = 0

Where A, B, C, x, y are integers and x1 ≤ x ≤ x2 and y1 ≤ y ≤ y2.

Input

Input starts with an integer T (≤ 10000), denoting the number of test cases.

Each case starts with a line containing seven integers A, B, C, x1, x2, y1, y2 (x1 ≤ x2, y1 ≤ y2). The value of each integer will lie in the range [-108, 108].

Output

For each case, print the case number and the total number of solutions.

Sample Input

5

1 1 -5 -5 10 2 4

-10 -8 80 -100 100 -90 90

2 3 -4 1 7 0 8

-2 -3 6 -2 5 -10 5

1 8 -32 0 0 1 10

Sample Output

Case 1: 3

Case 2: 37

Case 3: 1

Case 4: 2

Case 5: 1

毒瘤题。。。

首先肯定要用到exgcd。。都快忘了。

再推一下——

Ax0+By0=gcd(A,B)

=  Bx+(A%B)y=gcd(B,A%B)

=  Bx+(A-(A/B)*B)y

=  Ay+B(x-(A/B)y)

则 x0=y,y0=(x-(A/B)y)。

好,推好式子再回到题目。

为了省去一些复杂的分类讨论,我们把A,B都搞成非负整数,同事区间范围也要改动。

然后判断几个特殊情况:

A==0&&B==0——>ans=(rx-lx+1)*(ry-ly+1)*(C==0)

A==0——>ans=(rx-lx+1)*jug(C/B in [ly..ry])*(C%B==0)

B==0——>ans=(ry-ly+1)*jug(C/A in [lx..rx])*(C%A==0)

然后,就是一般情况。

我们知道,AB同号时,x增加时,y减少,x减少时y增加。

我们设在做exgcd的时候得到的一组解为X,Y。

那么,如果X<lx||Y>ry,那么,我们要把他们都移进合法区间内。然后得到最极端的解。然后算出另一边的极端解,然后处理一下细节。

如果X>rx||Y<ly,也差不多。

如果原来X,Y就都在合法范围内,我们可以先把某一个处理得不合法,再做上面的工作。

具体怎么算极端解,我真的没法讲清楚,细节非常多。。

还有这种题要尽量避免分类讨论。。

code:

 #include<bits/stdc++.h>
 #define LL long long
 using namespace std;
 LL A,B,C,lx,rx,ly,ry,X,Y,gcd,delx,dely;
 LL sx,sy,tx,ty,del,x[],y[],ans,kx,ky,k;
 LL exgcd(LL A,LL B,LL &x,LL &y) {
     ; y=; return A;}
     LL g=exgcd(B,A%B,x,y);
     LL x0=y,y0=x-y*(A/B);
     x=x0; y=y0; return g;
 }
 bool range_xy(LL x,LL y) {return x>=lx&&x<=rx&&y>=ly&&y<=ry;}
 int main() {
     int T; cin>>T;
     ; ts<=T; ts++) {
         scanf("%lld%lld%lld",&A,&B,&C);
         scanf("%lld%lld%lld%lld",&lx,&rx,&ly,&ry);

         ) A=-A,lx=-lx,rx=-rx,swap(lx,rx);
         ) B=-B,ly=-ly,ry=-ry,swap(ly,ry);
         C=-C;
         &&B==) {
             printf()*(ry-ly+)*(C==)); continue;
         }

         gcd=exgcd(A,B,X,Y);
         ) {printf(); continue;}
         X=X*C/gcd,Y=Y*C/gcd;
         delx=B/gcd,dely=A/gcd,ans=;

         ) {
             ) ans=; )*range_xy(sx,ly);
             printf("Case %d: %lld\n",ts,ans); continue;
         }else
         ) {
             ) ans=; )*range_xy(lx,sy);
             printf("Case %d: %lld\n",ts,ans); continue;
         }

         sx=X,sy=Y;
         if (sx>=lx) {
             k=(sx-lx)/delx+;
             sx=sx-k*delx,sy=sy+k*dely;
         }
         if (sx<lx||sy>ry) {
             ) kx=(lx-sx)/delx; ;
             ) ky=(sy-ry)/dely; ;
             k=max(kx,ky);
             sx+=delx*k,sy-=dely*k;
             ;
             else {
                 kx=(rx-sx)/delx;
                 ky=(sy-ly)/dely;
                 k=min(kx,ky);
                 tx=sx+k*delx,ty=sy-k*dely;
                 ans=min((tx-sx)/delx+,(sy-ty)/dely+);
             }
         }else
         if (sx>rx||sy<ly) {
             ) kx=(sx-rx)/delx; ;
             ) ky=(ly-sy)/dely; ;
             k=max(kx,ky);
             sx-=delx*k,sy+=dely*k;
             ;
             else{
                 kx=(sx-lx)/delx;
                 ky=(ry-sy)/dely;
                 k=min(kx,ky);
                 tx=sx-k*delx,ty=sy+k*dely;
                 ans=min((sx-tx)/delx+,(ty-sy)/dely+);
             }
         };
         printf("Case %d: %lld\n",ts,ans);
     }
     ;
 }

[lightoj P1306] Solutions to an Equation的更多相关文章

  1. lightoj 1306 - Solutions to an Equation 扩展的欧几里得

    思路:看题就知道用扩展的欧几里得算法做!!! 首先我们可以求出ax+by=gcd(a,b)=g的一个组解(x0,y0).而要使ax+by=c有解,必须有c%g==0. 继而可以得到ax+by=c的一个 ...

  2. LightOJ 1306 - Solutions to an Equation 裸EXGCD

    本题是极其裸的EXGCD AX+BY+C=0 给你a b c 和x与y的区间范围,问你整数解有几组 作为EXGCD入门,题目比较简单 主要需要考虑区间范围的向上.向下取整,及正负符号的问题 问题是这正 ...

  3. Solutions to an Equation LightOJ - 1306

    Solutions to an Equation LightOJ - 1306 一个基础的扩展欧几里得算法的应用. 解方程ax+by=c时,基本就是先记录下a和b的符号fla和flb(a为正则fla为 ...

  4. Jordan Lecture Note-6: The Solutions of Nonlinear Equation.

    The Solutions of Nonlinear Equation 本文主要介绍几种用于解非线性方程$f(x)=0$的一些方法. (1) Bisection Method. 算法: step 1: ...

  5. 1306 - Solutions to an Equation

    1306 - Solutions to an Equation    PDF (English) Statistics Forum Time Limit: 2 second(s) Memory Lim ...

  6. (light oj 1306) Solutions to an Equation 扩展欧几里得算法

    题目链接:http://lightoj.com/volume_showproblem.php?problem=1306 You have to find the number of solutions ...

  7. [ACM_数学] Counting Solutions to an Integral Equation (x+2y+2z=n 组合种类)

    http://acm.hust.edu.cn/vjudge/contest/view.action?cid=27938#problem/E 题目大意:Given, n, count the numbe ...

  8. [LeetCode] Solve the Equation 解方程

    Solve a given equation and return the value of x in the form of string "x=#value". The equ ...

  9. [Swift]LeetCode640. 求解方程 | Solve the Equation

    Solve a given equation and return the value of x in the form of string "x=#value". The equ ...

随机推荐

  1. 检测到包降级: Microsoft.Extensions.Configuration.Abstractions 从 2.1.1 降 2.1.0

    解决方法:工具-nuget管理包-程序管理控制台-选择 项目- 执行 -Install-Package Microsoft.Extensions.Configuration.Abstractions ...

  2. 对象的创建与OOP-Klass模型

    1.JVM中OOP-KLASS模型 在JVM中,使用了OOP-KLASS模型来表示java对象,即:1.jvm在加载class时,会创建instanceKlass,表示其元数据,包括常量池.字段.方法 ...

  3. Java第二次考试

    代码 package sizeyunsuan; import java.io.FileNotFoundException; import java.io.PrintStream; import jav ...

  4. HTTPS学习笔记一----HTTPS的基础理论知识

    首先推荐一本书,<HTTP权威指南>我就是看这本书入门的,对http协议有了更好的理解,学习https的理论知识我认为需要了解以下几点,需要一步步的深入学习: 1.HTTPS的基本概念? ...

  5. pypi上传问题

    pypi上传过程中报错403 windows 解决办法: 1.建一个新的记事本编辑内容 [distutils]index-servers = pypi [pypi]repository:https:/ ...

  6. 艾妮记账本Web开发(开发版)

    因为没有办法制作微信小程序版的艾妮记账本所以只能选择做Web开发版,但因为是花时间赶出来到的(但用了我已学的所有Web知识)所以就没有办法按老师的要求写七天的制作过程. 其实真正说起来我的这个Web开 ...

  7. Poj3176 Cow Bowling (动态规划 数字三角形)

    Description The cows don't use actual bowling balls when they go bowling. They each take a number (i ...

  8. 复习-css列表和表格相关属性

    css列表和表格相关属性 list-style:设置所有列表属性 list-style-image:将图像设置为列表项标记,主要有url值 list-style-position:设置列表项标记的放置 ...

  9. 面向对象select方法

    <?php class Table{         protected $tablename;         protected $arrTable;        protected $w ...

  10. [C++ Primer Plus] 第3章、处理数据(二)课后习题

    1 . 编写一个小程序,要求用户使用一个整数输出自己的身高(单位为厘米),然后将身高转换为米和厘米.该程序使用下划线字符来指示输入位置.另外,使用一个 const 符号常量来表示转换因子. #incl ...