HDU——T 1573 X問題
阿新 • • 發佈:2017-08-13
ted mes show 數據 clu accep ans () iss
Input
輸入數據的第一行為一個正整數T,表示有T組測試數據。每組測試數據的第一行為兩個正整數N,M (0 < N <= 1000,000,000 , 0 < M <= 10),表示X小於等於N,數組a和b中各有M個元素。接下來兩行,每行各有M個正整數,分別為a和b中的元素。
Sample Output
1
0
3
http://acm.hdu.edu.cn/showproblem.php?pid=1573
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 6718 Accepted Submission(s): 2342
Output 對應每一組輸入,在獨立一行中輸出一個正整數,表示滿足條件的X的個數。
Sample Input 3 10 3 1 2 3 0 1 2 100 7 3 4 5 6 7 8 9 1 2 3 4 5 6 7 10000 10 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9
Author lwg
Source HDU 2007-1 Programming Contest
1 #include <algorithm> 2 #include <cstdio> 3 4 using namespace std; 5 6 const int N(1000000001); 7 int n,m,a[11],b[11],tot; 8 9 int exgcd(int a,int b,int &x,int &y) 10 {11 if(!b) 12 { 13 x=1; y=0; 14 return a; 15 } 16 int ret=exgcd(b,a%b,x,y),tmp=x; 17 x=y; y=tmp-a/b*y; 18 return ret; 19 } 20 int CRT() 21 { 22 int ret=b[1]; tot=a[1]; 23 for(int i=2;i<=m;i++) 24 { 25 int x,y,tmp; 26 int c=b[i]-ret; 27 int gcd=exgcd(tot,a[i],x,y); 28 if(c%gcd) return N; 29 x=x*c/gcd; 30 int mod=a[i]/gcd; 31 x=(x%mod+mod)%mod; 32 ret+=tot*x; tot*=mod; 33 } 34 if(!ret) ret+=tot; 35 return ret; 36 } 37 38 int main() 39 { 40 int t; scanf("%d",&t); 41 for(int ans=0;t--;ans=0) 42 { 43 scanf("%d%d",&n,&m); 44 for(int i=1;i<=m;i++) scanf("%d",a+i); 45 for(int i=1;i<=m;i++) scanf("%d",b+i); 46 int tmp=CRT(); 47 for(;tmp<=n;tmp+=tot) ans++; 48 printf("%d\n",ans); 49 } 50 return 0; 51 }
HDU——T 1573 X問題