結果
問題 | No.1655 123 Swaps |
ユーザー | kmjp |
提出日時 | 2021-08-21 11:39:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,810 bytes |
コンパイル時間 | 2,369 ms |
コンパイル使用メモリ | 210,268 KB |
実行使用メモリ | 58,932 KB |
最終ジャッジ日時 | 2024-10-15 02:57:13 |
合計ジャッジ時間 | 23,469 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 70 ms
36,176 KB |
testcase_01 | AC | 69 ms
36,224 KB |
testcase_02 | AC | 68 ms
36,156 KB |
testcase_03 | AC | 69 ms
36,144 KB |
testcase_04 | WA | - |
testcase_05 | AC | 68 ms
36,132 KB |
testcase_06 | AC | 71 ms
36,132 KB |
testcase_07 | AC | 70 ms
36,228 KB |
testcase_08 | WA | - |
testcase_09 | AC | 66 ms
36,172 KB |
testcase_10 | AC | 64 ms
36,124 KB |
testcase_11 | AC | 67 ms
36,328 KB |
testcase_12 | AC | 68 ms
36,168 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 975 ms
58,288 KB |
testcase_16 | AC | 975 ms
58,108 KB |
testcase_17 | AC | 987 ms
58,196 KB |
testcase_18 | AC | 976 ms
58,628 KB |
testcase_19 | AC | 980 ms
58,520 KB |
testcase_20 | AC | 977 ms
58,400 KB |
testcase_21 | AC | 981 ms
58,420 KB |
testcase_22 | AC | 987 ms
58,812 KB |
testcase_23 | AC | 989 ms
58,920 KB |
testcase_24 | AC | 986 ms
58,764 KB |
testcase_25 | AC | 978 ms
58,932 KB |
testcase_26 | AC | 976 ms
58,328 KB |
testcase_27 | AC | 509 ms
50,184 KB |
testcase_28 | AC | 501 ms
50,140 KB |
testcase_29 | AC | 966 ms
58,256 KB |
testcase_30 | AC | 960 ms
58,504 KB |
testcase_31 | AC | 498 ms
50,064 KB |
testcase_32 | AC | 2 ms
6,816 KB |
testcase_33 | AC | 2 ms
6,820 KB |
testcase_34 | AC | 2 ms
6,820 KB |
testcase_35 | RE | - |
testcase_36 | AC | 395 ms
47,112 KB |
testcase_37 | AC | 396 ms
47,196 KB |
testcase_38 | AC | 377 ms
50,436 KB |
testcase_39 | AC | 399 ms
50,188 KB |
testcase_40 | AC | 973 ms
57,992 KB |
testcase_41 | AC | 2 ms
6,820 KB |
testcase_42 | AC | 65 ms
36,160 KB |
testcase_43 | AC | 70 ms
36,184 KB |
testcase_44 | AC | 73 ms
36,236 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;} //------------------------------------------------------- int A,B,C; const ll mo=924844033; const int NUM_=1400001; static ll fact[NUM_+1],factr[NUM_+1],inv[NUM_+1]; ll modpow(ll a, ll n = mo-2) { ll r=1; while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1; return r; } template<class T> vector<T> fft(vector<T> v, bool rev=false) { int n=v.size(),i,j,m; for(i=0,j=1;j<n-1;j++) { for(int k=n>>1;k>(i^=k);k>>=1); if(i>j) swap(v[i],v[j]); } for(int m=2; m<=n; m*=2) { T wn=modpow(5,(mo-1)/m); if(rev) wn=modpow(wn); for(i=0;i<n;i+=m) { T w=1; for(int j1=i,j2=i+m/2;j2<i+m;j1++,j2++) { T t1=v[j1],t2=(ll)w*v[j2]%mo; v[j1]=t1+t2; v[j2]=t1+mo-t2; while(v[j1]>=mo) v[j1]-=mo; while(v[j2]>=mo) v[j2]-=mo; w=(ll)w*wn%mo; } } } if(rev) { ll rv = modpow(n); FOR(i,n) v[i]=(ll)v[i]*rv%mo; } return v; } template<class T> vector<T> MultPoly(vector<T> P,vector<T> Q,bool resize=false) { if(resize) { int maxind=0,pi=0,qi=0,i; int s=2; FOR(i,P.size()) if(norm(P[i])) pi=i; FOR(i,Q.size()) if(norm(Q[i])) qi=i; maxind=pi+qi+1; while(s*2<maxind) s*=2; P.resize(s*2);Q.resize(s*2); if(s<=16) { //fastpath vector<T> R(s*2); for(int x=0;x<2*s;x++) for(int y=0;x+y<2*s;y++) (R[x+y]+=P[x]*Q[y])%=mo; return R; } } P=fft(P), Q=fft(Q); for(int i=0;i<P.size();i++) P[i]=(ll)P[i]*Q[i]%mo; return fft(P,true); } void solve() { int i,j,k,l,r,x,y; string s; cin>>A>>B>>C; if((A+B+C)%2) { cout<<0<<endl; return; } 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; int N=(A+B+C)/2; ll ret=0; FOR(i,3) FOR(j,3) if((i+B-j+3)%3==(A-i+j+3)%3) { vector<ll> X(2*N+1),Y(2*N+1); FOR(x,A+1) if(x%3==i) X[x]=factr[x]*factr[A-x]%mo; FOR(y,B+1) if(y%3==j) Y[y]=factr[y]*factr[B-y]%mo; auto Z=MultPoly(X,Y,1); FOR(x,N+1) { if(N-A-B+x>=0) { (ret+=Z[x]*factr[N-x]%mo*factr[N-A-B+x])%=mo; } } } ret=ret*fact[N]%mo*fact[N]%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; }