結果
問題 | No.2705 L to R Graph (Another ver.) |
ユーザー | kmjp |
提出日時 | 2024-05-16 23:10:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,686 ms / 3,000 ms |
コード長 | 3,817 bytes |
コンパイル時間 | 2,239 ms |
コンパイル使用メモリ | 213,456 KB |
実行使用メモリ | 420,512 KB |
最終ジャッジ日時 | 2024-05-16 23:11:59 |
合計ジャッジ時間 | 11,177 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
19,260 KB |
testcase_01 | AC | 24 ms
19,136 KB |
testcase_02 | AC | 23 ms
19,260 KB |
testcase_03 | AC | 22 ms
21,312 KB |
testcase_04 | AC | 22 ms
21,316 KB |
testcase_05 | AC | 22 ms
17,296 KB |
testcase_06 | AC | 23 ms
17,284 KB |
testcase_07 | AC | 21 ms
17,208 KB |
testcase_08 | AC | 1,931 ms
331,832 KB |
testcase_09 | AC | 2,300 ms
380,564 KB |
testcase_10 | AC | 1,504 ms
279,256 KB |
testcase_11 | AC | 1,796 ms
312,672 KB |
testcase_12 | AC | 1,250 ms
233,536 KB |
testcase_13 | AC | 725 ms
149,580 KB |
testcase_14 | AC | 2,494 ms
363,748 KB |
testcase_15 | AC | 284 ms
69,456 KB |
testcase_16 | AC | 1,263 ms
233,576 KB |
testcase_17 | AC | 542 ms
119,576 KB |
testcase_18 | AC | 2,071 ms
347,940 KB |
testcase_19 | AC | 1,023 ms
195,832 KB |
testcase_20 | AC | 629 ms
136,664 KB |
testcase_21 | AC | 1,699 ms
300,652 KB |
testcase_22 | AC | 1,700 ms
298,240 KB |
testcase_23 | AC | 2,526 ms
404,160 KB |
testcase_24 | AC | 2,564 ms
406,456 KB |
testcase_25 | AC | 2,516 ms
397,524 KB |
testcase_26 | AC | 2,522 ms
407,012 KB |
testcase_27 | AC | 2,383 ms
389,128 KB |
testcase_28 | AC | 2,277 ms
387,012 KB |
testcase_29 | AC | 2,239 ms
381,256 KB |
testcase_30 | AC | 2,369 ms
387,752 KB |
testcase_31 | AC | 2,345 ms
385,404 KB |
testcase_32 | AC | 2,328 ms
388,460 KB |
testcase_33 | AC | 2,323 ms
384,760 KB |
testcase_34 | AC | 2,483 ms
406,972 KB |
testcase_35 | AC | 2,325 ms
386,856 KB |
testcase_36 | AC | 2,444 ms
403,352 KB |
testcase_37 | AC | 2,585 ms
413,932 KB |
testcase_38 | AC | 2,257 ms
383,140 KB |
testcase_39 | AC | 2,503 ms
407,204 KB |
testcase_40 | AC | 2,417 ms
398,520 KB |
testcase_41 | AC | 2,647 ms
420,364 KB |
testcase_42 | AC | 2,446 ms
402,960 KB |
testcase_43 | AC | 2,585 ms
420,512 KB |
testcase_44 | AC | 2,636 ms
419,352 KB |
testcase_45 | AC | 2,602 ms
419,732 KB |
testcase_46 | AC | 2,614 ms
419,356 KB |
testcase_47 | AC | 2,593 ms
419,480 KB |
testcase_48 | AC | 2,630 ms
419,852 KB |
testcase_49 | AC | 2,686 ms
419,660 KB |
testcase_50 | AC | 2,677 ms
419,720 KB |
testcase_51 | AC | 2,562 ms
419,228 KB |
testcase_52 | AC | 2,594 ms
419,356 KB |
ソースコード
#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]; int sumA[201010][332]; int sumB[101010][332]; vector<int> di[101010]; ll getG(int d,int c) { ll ret=FS[d+c]-FS[max(d,c-1)]; if(ret<0) ret+=mo; return ret; } ll getS(int p,int c) { ll ret=0; if(p>=330) { int i; for(i=1;i*p<=N;i++) { ret+=getG(p*i,c); } } else { int num=N/p; ret=(sumA[num*p+c][p]-sumA[c][p]-sumA[num*p][p]); int le=(c-1)/p; ret+=sumA[le*p][p]; ret-=le*FS[c-1]; ret=(ret%mo+mo)%mo; } return ret%mo; } 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=1;i<=N;i++) { for(j=i;j<=N;j+=i) di[j].push_back(i); sort(ALL(di[i])); } 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])%=mo; 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; } */ for(j=1;j<=330;j++) { for(i=1;i<=2*N;i++) { sumA[i][j]=FS[i]; if(i>=j) (sumA[i][j]+=sumA[i-j][j])%=mo; } } for(i=1;i<=N;i++) { vector<ll> V; FORR(d,di[i]) V.push_back(N/d); for(x=V.size()-1;x>=0;x--) for(y=x+1;y<V.size();y++) if(di[i][y]%di[i][x]==0) V[x]-=V[y]; FOR(x,V.size()) (ret+=V[x]*getS(di[i][x],i))%=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; }