結果
問題 | No.590 Replacement |
ユーザー | Pulmn |
提出日時 | 2017-04-14 21:41:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,571 bytes |
コンパイル時間 | 1,998 ms |
コンパイル使用メモリ | 87,668 KB |
実行使用メモリ | 17,188 KB |
最終ジャッジ日時 | 2024-07-19 09:27:12 |
合計ジャッジ時間 | 5,634 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 1 ms
5,376 KB |
testcase_34 | AC | 1 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 55 ms
7,964 KB |
testcase_39 | AC | 50 ms
8,088 KB |
testcase_40 | AC | 88 ms
12,544 KB |
testcase_41 | AC | 91 ms
12,544 KB |
testcase_42 | AC | 50 ms
7,504 KB |
testcase_43 | AC | 50 ms
7,620 KB |
testcase_44 | AC | 76 ms
17,188 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <map> #include <algorithm> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int,int> P; typedef vector<P> vp; const ll mod=1e9+7; ll gcd(ll a,ll b){ if(!b) return a; return gcd(b,a%b); } ll lcm(ll a,ll b){ return a/gcd(a,b)*b; } ll Pow_mod(ll n,ll p){ ll r=1; for(;p>0;p>>=1){ if(p&1) r=(r*n)%mod; n=(n*n)%mod; } return r; } ll Division_mod(ll n,ll m){ return n*Pow_mod(m,mod-2)%mod; } int n; vi a,b; vi ac,ad,as,bc,bd,bs; map<pair<P,int>,vp> m; void f(vi& A,vi& C,vi& D,vi& S){ for(int i=0;i<n;i++){ cin>>A[i]; A[i]--; } int cnt=0; for(int i=0;i<n;i++) if(C[i]==-1){ int I=i,num=0; do{ C[I]=cnt; D[I]=num; num++; I=A[I]; }while(I!=i); S.push_back(num); cnt++; } } int main(){ ios::sync_with_stdio(0); cin>>n; a=b=ad=bd=vi(n); ac=bc=vi(n,-1); f(a,ac,ad,as); f(b,bc,bd,bs); for(int i=0;i<n;i++){ int g=gcd(as[ac[i]],bs[bc[i]]); m[{{ac[i],bc[i]},(ad[i]%g-bd[i]%g+g)%g}].push_back({ad[i],bd[i]}); } ll res=0; for(auto i=m.begin();i!=m.end();i++){ P tmp=i->first.first; vp v=i->second; int A=as[tmp.first],B=bs[tmp.second],S=v.size(); ll l=lcm(A,B),g=gcd(A,B),P=v[0].first,Q=v[0].second; vl u(S+1); u[S]=l; for(int i=1;i<S;i++){ ll X=v[i].first,Y=v[i].second,num; num=(P+A-X)%A; (Y+=num)%=B; num+=(Q/g+g-Y/g)%g*A; u[i]=num; } sort(u.begin(),u.end()); for(int i=0;i<S;i++){ ll sa=(u[i+1]-u[i])%mod; (res+=Division_mod(sa*(sa-1)%mod,2))%=mod; } } cout<<res<<endl; }