結果
問題 | No.2243 Coaching Schedule |
ユーザー | lddlinan |
提出日時 | 2023-03-13 15:24:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,928 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 88,696 KB |
実行使用メモリ | 9,728 KB |
最終ジャッジ日時 | 2024-09-18 07:33:45 |
合計ジャッジ時間 | 6,785 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
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 | -- | - |
ソースコード
#include<stdio.h> #include<string.h> #include<stdlib.h> #include <map> #include <vector> #include <queue> #include <deque> #include <set> #include <stack> #include <algorithm> #include <array> #include <unordered_set> #include <unordered_map> #include <string> using namespace std; bool rcmp(int a, int b) { return a>b; } typedef long long LL; #define MOD 998244353 #define GGG 3 void assert(int *p) { *p=0; } int expit(LL b, LL m) { LL r=1; while(m) { if (m&1) { r=r*b; r%=MOD; } b=b*b; b%=MOD; m>>=1; } return r; } void fft(int *p, int n, char revert) { if ((MOD-1)%n) assert(0); int rt = expit(GGG, (MOD-1)/n); LL x, y; if (revert) { rt = expit(rt, MOD-2); } int b, i, j, l, t; LL w, ww, v, u, vv; for (i=1, j=0; i<n; i++) { b=n>>1; for (; j&b; b>>=1) j^=b; j^=b; if (i<j) { t=p[i]; p[i]=p[j]; p[j]=t; } } for (l=2; l<=n; l<<=1) { w=rt; for (i=l; i<n; i<<=1) w=(w*w)%MOD; for (i=0; i<n; i+=l) { ww=1; for (j=0; j<l/2; j++) { u=p[i+j]; v=p[i+j+l/2]; v*=ww; v%=MOD; vv=u+v; if (vv>=MOD) vv-=MOD; p[i+j]=vv; vv=u-v; if (vv<0) vv+=MOD; p[i+j+l/2]=vv; ww*=w; ww%=MOD; } } } if (revert) { x = expit(n, MOD-2); for (i=0; i<n; i++) { vv=p[i]; vv*=x; vv%=MOD; p[i]=vv; } } } #define MAXN 1<<20 int pbuf1[MAXN]; int pbuf2[MAXN]; int mpoly(int *p1, int c1, int *p2, int c2) { int m=c1+c2+1; int n=1; while(n<m) n<<=1; int i; LL v; for (i=0; i<=c1; i++) pbuf1[i]=p1[i]; for (; i<n; i++) pbuf1[i]=0; for (i=0; i<=c2; i++) pbuf2[i]=p2[i]; for (; i<n; i++) pbuf2[i]=0; fft(pbuf1, n, 0); fft(pbuf2, n, 0); for (i=0; i<n; i++) { v=pbuf1[i]; v*=pbuf2[i]; v%=MOD; pbuf1[i]=v; } fft(pbuf1, n, 1); i=n-1; while(i>0&&pbuf1[i]==0) i--; return i; } int ft[100004]; int cs[100004]; int kcs[100004]; int ift[100004]; int pa[200004]; int pb[200004]; int main() { int n, i, m, mx, j, k, c; LL v, r; scanf("%d %d", &m, &n); ft[0]=ift[0]=1; for (i=1; i<=n; i++) { v=ft[i-1]; v*=i; v%=MOD; ft[i]=v; ift[i]=expit(v, MOD-2); } for (i=1; i<=m; i++) cs[i]=0; for (i=0; i<n; i++) { scanf("%d", &v); cs[v]++; } k=0; for (i=1; i<=m; i++) if (cs[i]) kcs[k++]=cs[i]; mx = *max_element(kcs, kcs+k); for (i=0; i<mx; i++) pb[i]=0; for (; i<=n; i++) { v=1; for (j=0; j<k; j++) { c=kcs[j]; // i!/(i-c)! v*=ft[i]; v%=MOD; v*=ift[i-c]; v%=MOD; } v*=ift[i]; v%=MOD; pb[i]=v; } // for pa... for (i=0; i<=n; i++) { v=ift[i]; if (i&1) { v=MOD-v; v%=MOD; } pa[i]=v; } mpoly(pa, n, pb, n); r=0; for (i=0; i<=n; i++) { v=pbuf1[i]; v*=ft[i]; v%=MOD; r+=v; r%=MOD; } printf("%lld\n", r); return 0; }