結果
問題 | No.590 Replacement |
ユーザー | fumofumofuni |
提出日時 | 2022-10-17 23:46:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,989 bytes |
コンパイル時間 | 2,611 ms |
コンパイル使用メモリ | 226,584 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-06-28 12:32:33 |
合計ジャッジ時間 | 8,573 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | AC | 39 ms
5,760 KB |
testcase_14 | AC | 60 ms
6,400 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 16 ms
5,376 KB |
testcase_17 | AC | 25 ms
5,376 KB |
testcase_18 | AC | 94 ms
9,672 KB |
testcase_19 | AC | 90 ms
8,604 KB |
testcase_20 | AC | 23 ms
5,376 KB |
testcase_21 | AC | 117 ms
9,864 KB |
testcase_22 | AC | 113 ms
11,000 KB |
testcase_23 | AC | 120 ms
10,844 KB |
testcase_24 | AC | 120 ms
10,248 KB |
testcase_25 | AC | 119 ms
9,984 KB |
testcase_26 | AC | 121 ms
9,828 KB |
testcase_27 | AC | 118 ms
10,448 KB |
testcase_28 | AC | 119 ms
9,364 KB |
testcase_29 | AC | 119 ms
9,356 KB |
testcase_30 | AC | 123 ms
9,344 KB |
testcase_31 | AC | 121 ms
10,192 KB |
testcase_32 | AC | 125 ms
10,572 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 107 ms
12,108 KB |
testcase_37 | AC | 105 ms
11,988 KB |
testcase_38 | AC | 106 ms
12,112 KB |
testcase_39 | AC | 104 ms
11,860 KB |
testcase_40 | AC | 163 ms
16,524 KB |
testcase_41 | AC | 168 ms
16,648 KB |
testcase_42 | AC | 108 ms
11,460 KB |
testcase_43 | AC | 107 ms
10,680 KB |
testcase_44 | AC | 139 ms
18,816 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; //#pragma GCC optimize("Ofast") #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=(n)-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define vtpl(x,y,z) vector<tuple<x,y,z>> #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[9]={1,0,-1,0,1,1,-1,-1,0}; const ll dx[9]={0,1,0,-1,1,-1,1,-1,0}; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } struct UnionFind { vector<int> par; vector<int> edge; UnionFind(int n) : par(n, -1),edge(n, 0) {} int root(int x) { if (par[x] < 0) return x; else return par[x] = root(par[x]); } bool same(int x, int y) { return root(x) == root(y); } bool merge(int x, int y) { x = root(x); y = root(y); if (x == y) { edge[x]++; return false; } if (par[x] > par[y]) swap(x, y); par[x] += par[y]; par[y] = x; edge[x] += edge[y]+1; return true; } int size(int x) { return -par[root(x)]; } }; //中国剰余定理 // 返り値: a と b の最大公約数 // ax + by = gcd(a, b) を満たす (x, y) が格納される long long extGcd(long long a, long long b, long long &x, long long &y) { if (b == 0) { x = 1; y = 0; return a; } long long d = extGcd(b, a%b, y, x); y -= a/b * x; return d; } //-1が帰ってくる可能性に注意 pair<long long, long long> ChineseRem(const vector<long long> &b, const vector<long long> &m) { long long r = 0, M = 1; for (int i = 0; i < (int)b.size(); ++i) { long long p, q; long long d = extGcd(M, m[i], p, q); // p is inv of M/d (mod. m[i]/d) if ((b[i] - r) % d != 0) return make_pair(0, -1); long long tmp = (b[i] - r) / d * p % (m[i]/d); r += M * tmp; M *= m[i]/d; } return make_pair((r+M+M)%M, M); } int main(){ ll n;cin >> n; vl a(n),b(n); rep(i,n)cin >> a[i],a[i]--; rep(i,n)cin >> b[i],b[i]--; UnionFind ua(n),ub(n); rep(i,n)ua.merge(i,a[i]); rep(i,n)ub.merge(i,b[i]); map<ll,vl> mp; rep(i,n){ mp[(ll)ua.root(i)*n+ub.root(i)].emplace_back(i); } vl dpa(n),dpb(n); rep(i,n){ if(i!=ua.root(i))continue; ll now=i; rep(j,ua.size(i)){ dpa[now]=j; now=a[now]; } } rep(i,n){ if(i!=ub.root(i))continue; ll now=i; rep(j,ub.size(i)){ dpb[now]=j; now=b[now]; } } ll ans=0; for(auto [p,v]:mp){ //cout << "xx" << p << endl; ll x=p/n,y=p%n; ll g=gcd(ua.size(x),ub.size(y)); map<ll,vl> memo; ll l; for(auto z:v){ ll f=((dpa[z]-dpb[z])%g+g)%g; ll m=ua.size(x); ll na=((dpa[z]-f)%m+m)%m; auto [val,lc]=ChineseRem({na,dpb[z]},{m,ub.size(y)}); memo[f].emplace_back(val); l=lc; } for(auto [hoge,vals]:memo){ sort(all(vals));vals.emplace_back(l+vals[0]); rep(i,vals.size()-1){ ll s=vals[i+1]-vals[i]; ans+=s*(s-1)/2; } //cout << l << endl; //for(auto f:vals)cout << f <<" ";cout << endl; } } cout << ans%MOD << endl; }