結果

問題 No.590 Replacement
ユーザー ryoissyryoissy
提出日時 2017-11-06 15:21:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,608 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 179,304 KB
実行使用メモリ 17,416 KB
最終ジャッジ日時 2024-05-03 05:43:24
合計ジャッジ時間 7,613 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 41 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 48 ms
7,204 KB
testcase_19 AC 52 ms
6,736 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 79 ms
7,308 KB
testcase_22 AC 72 ms
7,992 KB
testcase_23 AC 71 ms
8,220 KB
testcase_24 AC 64 ms
7,556 KB
testcase_25 AC 65 ms
7,168 KB
testcase_26 AC 67 ms
7,288 KB
testcase_27 AC 70 ms
8,000 KB
testcase_28 AC 78 ms
7,264 KB
testcase_29 AC 73 ms
7,268 KB
testcase_30 AC 77 ms
7,168 KB
testcase_31 AC 72 ms
7,324 KB
testcase_32 AC 69 ms
8,052 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 45 ms
8,704 KB
testcase_37 AC 47 ms
8,960 KB
testcase_38 AC 41 ms
8,064 KB
testcase_39 AC 42 ms
7,936 KB
testcase_40 AC 87 ms
12,672 KB
testcase_41 AC 89 ms
12,800 KB
testcase_42 AC 42 ms
7,740 KB
testcase_43 AC 44 ms
7,588 KB
testcase_44 AC 78 ms
17,416 KB
testcase_45 AC 45 ms
8,960 KB
testcase_46 AC 46 ms
8,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void f(std::vector<int>&, std::vector<int>&, std::vector<int>&, std::vector<int>&)’:
main.cpp:20:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |                 scanf("%d",&a[i]);
      |                 ~~~~~^~~~~~~~~~~~
main.cpp: In function ‘int main()’:
main.cpp:43:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   43 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef pair<P,int> PP;
int n;

ll gcd(ll a,ll b){
	if(b==0LL)return a;
	return gcd(b,a%b);
}

ll lcm(ll a,ll b){
	return a/gcd(a,b)*b;
}

void f(vector<int>& a,vector<int>& c,vector<int>& d,vector<int>& s){
	for(int i=0;i<n;i++){
		scanf("%d",&a[i]);
		a[i]--;
	}
	int cnt=0;
	for(int i=0;i<n;i++){
		if(c[i]==-1){
			int j=i,num=0;
			do{
				c[j]=cnt;
				d[j]=num;
				num++;
				j=a[j];
			}while(j!=i);
			s.push_back(num);
			cnt++;
		}
	}
} 

vector<int> a,b,a_gr,a_ord,a_size,b_gr,b_ord,b_size;
map<PP,vector<P> > mp;

int main(void){
	scanf("%d",&n);
	a=b=a_ord=b_ord=vector<int>(n,0);
	a_gr=b_gr=vector<int>(n,-1);
	f(a,a_gr,a_ord,a_size);
	f(b,b_gr,b_ord,b_size);
	ll ans=0;
	for(int i=0;i<n;i++){
		int g=gcd(a_size[a_gr[i]],b_size[b_gr[i]]);
		mp[PP(P(a_gr[i],b_gr[i]),(a_ord[i]%g-b_ord[i]%g+g)%g)].push_back(P(a_ord[i],b_ord[i]));
	}
	map<PP,vector<P> >::iterator it=mp.begin();
	for(;it!=mp.end();it++){
		P tmp=it->first.first;
		vector<P> vp=it->second;
		int A=a_size[tmp.first],B=b_size[tmp.second],S=vp.size();
		ll l=lcm(A,B),g=gcd(A,B),P=vp[0].first,Q=vp[0].second;
		vector<ll> u(S+1),w(B/g);
		u[S]=l;
		int j=Q/g;
		for(int i=0;i<B/g;i++){
			(j+=A/g)%=B/g;
			w[j]=B/g-i-1;
		}
		for(int i=1;i<S;i++){
			ll X=vp[i].first,Y=vp[i].second;
			ll num=(P+A-X)%A;
			(Y+=num)%=B;
			num+=w[Y/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;
			(ans+=sa*(sa-1LL)/2LL)%=MOD;
		}
	}
	printf("%lld\n",ans);
	return 0;
}
0