結果

問題 No.2705 L to R Graph (Another ver.)
ユーザー 👑 kmjpkmjp
提出日時 2024-05-16 00:55:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,970 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 205,460 KB
実行使用メモリ 429,896 KB
最終ジャッジ日時 2024-05-16 00:56:10
合計ジャッジ時間 8,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,404 KB
testcase_01 AC 29 ms
16,960 KB
testcase_02 AC 25 ms
16,768 KB
testcase_03 AC 27 ms
14,812 KB
testcase_04 AC 25 ms
16,388 KB
testcase_05 AC 27 ms
18,204 KB
testcase_06 AC 25 ms
16,644 KB
testcase_07 AC 24 ms
14,816 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

ll mo;
const int NUM_=400001;
static ll fact[NUM_+1],factr[NUM_+1],inv[NUM_+1];
ll comb(ll N_, ll C_) {
	if (fact[0]==0) {
	}
	if(C_<0 || C_>N_) return 0;
	return factr[C_]*fact[N_]%mo*factr[N_-C_]%mo;
}

ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

int N;
ll F[201010];
ll FS[201010];
ll G[101010];

ll sum1[201010];
ll sumA[101010][332];
ll sumB[101010][332];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>mo;
	
	inv[1]=fact[0]=factr[0]=1;
	for (int i=2;i<=NUM_;++i) inv[i] = inv[mo % i] * (mo - mo / i) % mo;
	for (int i=1;i<=NUM_;++i) fact[i]=fact[i-1]*i%mo, factr[i]=factr[i-1]*inv[i]%mo;
	
	for(i=2;i<=2*N;i++) {
		if(i<=N) F[i]=modpow(N,N-i)*fact[N-2]%mo*factr[N-i]%mo;
		(FS[i]=FS[i-1]+F[i])%=mo;
	}
	ll add=0;
	for(i=N;i>=1;i--) {
		(add+=F[i+2])%=mo;
		(G[i]=G[i+1]+add)%=mo;
	}
	
	
	
	for(int L=1;L<=N;L++) {
		// L未満のところは到達不可
		sum1[1]+=N+1-L;
		sum1[L]-=N+1-L;
		if(L<=330) {
			for(int d=1;d*L<=N;d++) {
				int add=0;
				for(x=1;x<L;x+=d) {
					sum1[d*L+x]++;
					++add;
				}
				sum1[(d+1)*L]-=add;
				
			}
		}
		else {
			for(int d=1;d*L<=N;d++){
				FOR(x,min(d,L-1)) {
					sumA[d*L+1+x][d]++;
					int add=(d+1)*L-(d*L+1+x);
					int dif=(add+d-1)/d;
					if((d*L+1+x)+dif*d<=N) {
						sumA[(d*L+1+x)+dif*d][d]--;
						sumB[(d*L+1+x)+dif*d][d]-=dif;
					}
				}
				
			}
		}
	}
	for(i=1;i<=N;i++) {
		sum1[i]+=sum1[i-1];
	}
	for(j=1;j<=330;j++) {
		ll a=0,b=0;
		for(i=j;i<=N;i++) {
			if(i>=j) {
				sumA[i][j]+=sumA[i-j][j];
				sumB[i][j]+=sumB[i-j][j];
			}
			sumB[i][j]+=sumA[i][j];
			sum1[i]+=sumB[i][j];
		}
	}
	ll ret=0;
	ll pat=0;
	ll SR=0;
	ll SL=1LL*N*(N+1)/2%mo;
	for(i=1;i<=N;i++) {
		// 2が閉路外
		(ret+=(SL+mo-sum1[i])%mo*G[i])%=mo;
		// 2が閉路内
		(pat+=(1LL*i*(i+1)/2-1)%mo*F[i])%=mo;
		// L=iとしたときR>LとなるRの数
		SR+=N-i;
	}
	// 2が閉路内でL>R
	(ret+=SR%mo*pat)%=mo;
	
	// 2が閉路内かつL=R
	for(int d=1;d<=N-1;d++) for(int c=1;c<=N;c++) {
		ll g=(FS[d+c]+mo-FS[max(d,c-1)])%mo;
		for(int L=1;L<=N;L++) if(d%__gcd(c,L)==0) (ret+=g)%=mo;
	}
	
	
	ret=ret*N%mo*(N-1)%mo;
	cout<<ret<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0