from CRT to EXCRT




模板洛谷P4777

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <bits/stdc++.h>
using namespace std;
typedef __int128 ll;
long long a[100005],b[100005];
void gcd(ll a,ll b,ll& x,ll& y,ll& d)
{
if(!b)
x=1,y=0,d=a;
else
gcd(b,a%b,y,x,d),y-=a/b*x;
}
int main()
{
long long t;
cin>>t;
for(int i=1;i<=t;i++)
cin>>a[i]>>b[i];
for(int i=1;i<t;i++)
{
ll A=a[i],B=a[i+1],C=(b[i+1]-b[i]),x,y,d=__gcd(A,B);
if(C%d)
return cout<<"-1",0;
A/=d,B/=d,C/=d;
gcd(a[i],a[i+1],x,y,d);
x=(x*C%B+B)%B;
a[i+1]=a[i]/d*a[i+1];
b[i+1]=(a[i]*x%a[i+1]+b[i])%a[i+1];
}
cout<<b[t];
}
就算是一分钱,也是对作者极大的支持
------ 本文结束 ------

版权声明

Baccano by baccano is licensed under a Creative Commons BY-NC-ND 4.0 International License.
baccano创作并维护的Baccano博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证
本文首发于baccano 博客( http://baccano.fun ),版权所有,侵权必究。

小游戏

---小游戏:要不要来选择一下自己可能的老婆?---

简易发声器

---简易的七键钢琴插件---

可以使用鼠标点击琴键也可以使用主键盘1-7或者小键盘的1-7来操作

那么现在开始吧

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
0%