結果
問題 | No.187 中華風 (Hard) |
ユーザー | kotatsugame |
提出日時 | 2019-09-27 00:25:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 112 ms / 3,000 ms |
コード長 | 1,879 bytes |
コンパイル時間 | 906 ms |
コンパイル使用メモリ | 81,908 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 06:33:34 |
合計ジャッジ時間 | 2,828 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
6,816 KB |
testcase_01 | AC | 13 ms
6,940 KB |
testcase_02 | AC | 32 ms
6,940 KB |
testcase_03 | AC | 31 ms
6,940 KB |
testcase_04 | AC | 74 ms
6,940 KB |
testcase_05 | AC | 73 ms
6,944 KB |
testcase_06 | AC | 73 ms
6,940 KB |
testcase_07 | AC | 74 ms
6,944 KB |
testcase_08 | AC | 112 ms
6,940 KB |
testcase_09 | AC | 112 ms
6,940 KB |
testcase_10 | AC | 111 ms
6,944 KB |
testcase_11 | AC | 73 ms
6,944 KB |
testcase_12 | AC | 74 ms
6,940 KB |
testcase_13 | AC | 76 ms
6,940 KB |
testcase_14 | AC | 63 ms
6,944 KB |
testcase_15 | AC | 16 ms
6,940 KB |
testcase_16 | AC | 18 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 11 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 61 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 74 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp:102:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 102 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; #include<vector> long long invmod(long long a,long long m) { long long s=a%m,t=m,sx=1,sy=0,tx=0,ty=1; while(s%t!=0) { long long f=s/t; long long u=s-t*f,ux=sx-tx*f,uy=sy-ty*f; s=t,sx=tx,sy=ty; t=u,tx=ux,ty=uy; } if(tx<0)tx+=m; return tx; } long long garner(const vector<long long>&x,const vector<long long>&m,const int mod=0)//*=x mod m { vector<long long>v(x.size()); v[0]=x[0]; for(int i=1;i<x.size();i++) { long long X=(x[i]-x[0])%m[i]; long long M=1; for(int j=0;j<i-1;j++) { (M*=m[j])%=m[i]; (X-=v[j+1]*M)%=m[i]; } (M*=m[i-1])%=m[i]; if(X<0)X+=m[i]; v[i]=X*invmod(M,m[i])%m[i]; } long long ret=v[0],p=1; if(mod==0) { for(int i=1;i<x.size();i++) { p*=m[i-1]; ret+=p*v[i]; } } else { ret%=mod; for(int i=1;i<x.size();i++) { (p*=m[i-1])%=mod; (ret+=p*v[i])%=mod; } } return ret; } #include<algorithm> long long garner_helper(vector<int>A,vector<int>B,const int mod,bool zero=true) { vector<int>primes; for(int i=0;i<A.size();i++) { int b=B[i]; for(int j=2;j*j<=b;j++) { if(b%j==0) { primes.push_back(j); while(b%j==0)b/=j; } } if(b>1)primes.push_back(b); } sort(primes.begin(),primes.end()); primes.erase(unique(primes.begin(),primes.end()),primes.end()); vector<long long>a,b; bool flag=!zero; long long ret=1; for(int p:primes) { int res=-1,ma=1; for(int i=0;i<A.size();i++) { if(B[i]%p==0) { int t=1; while(B[i]%p==0) { B[i]/=p; t*=p; } if(res>=0&&res%p!=A[i]%p)return-1; if(ma<t)ma=t,res=A[i]%t; A[i]%=B[i]; } } a.push_back(res); b.push_back(ma); flag&=res==0; (ret*=ma)%=mod; } if(!flag)ret=garner(a,b,mod); return ret; } main() { int N;cin>>N; vector<int>A(N),B(N); for(int i=0;i<N;i++)cin>>A[i]>>B[i]; cout<<garner_helper(A,B,1e9+7,false)<<endl; }