結果
問題 | No.2243 Coaching Schedule |
ユーザー | lddlinan |
提出日時 | 2023-03-13 15:39:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 384 ms / 4,000 ms |
コード長 | 3,099 bytes |
コンパイル時間 | 1,039 ms |
コンパイル使用メモリ | 90,960 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-09-18 07:34:39 |
合計ジャッジ時間 | 5,736 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 79 ms
7,424 KB |
testcase_06 | AC | 105 ms
7,424 KB |
testcase_07 | AC | 106 ms
7,296 KB |
testcase_08 | AC | 107 ms
7,168 KB |
testcase_09 | AC | 126 ms
7,168 KB |
testcase_10 | AC | 129 ms
7,040 KB |
testcase_11 | AC | 133 ms
7,296 KB |
testcase_12 | AC | 384 ms
7,040 KB |
testcase_13 | AC | 324 ms
7,040 KB |
testcase_14 | AC | 325 ms
7,040 KB |
testcase_15 | AC | 318 ms
7,168 KB |
testcase_16 | AC | 72 ms
7,296 KB |
testcase_17 | AC | 30 ms
5,376 KB |
testcase_18 | AC | 83 ms
6,784 KB |
testcase_19 | AC | 115 ms
6,656 KB |
testcase_20 | AC | 84 ms
5,376 KB |
testcase_21 | AC | 49 ms
5,376 KB |
testcase_22 | AC | 45 ms
5,376 KB |
testcase_23 | AC | 8 ms
5,376 KB |
testcase_24 | AC | 61 ms
5,376 KB |
testcase_25 | AC | 12 ms
5,376 KB |
testcase_26 | AC | 26 ms
5,376 KB |
testcase_27 | AC | 71 ms
5,376 KB |
testcase_28 | AC | 13 ms
5,376 KB |
testcase_29 | AC | 104 ms
6,528 KB |
testcase_30 | AC | 103 ms
6,912 KB |
testcase_31 | AC | 101 ms
7,168 KB |
testcase_32 | AC | 43 ms
5,376 KB |
testcase_33 | AC | 25 ms
5,376 KB |
testcase_34 | AC | 88 ms
6,528 KB |
testcase_35 | AC | 108 ms
6,912 KB |
testcase_36 | AC | 97 ms
6,912 KB |
ソースコード
#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 kcc[100004]; int ift[100004]; int pa[200004]; int pb[200004]; int main() { int n, i, m, mx, j, k, c; LL v, r, t; 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=0; i<=m; i++) cs[i]=0; for (i=0; i<n; i++) { scanf("%d", &v); cs[v]++; } sort(cs, cs+m+1); for (i=0; i<=m; i++) if (cs[i]) break; k=0; for(; i<=m; ) { j=i; while(j<=m&&cs[j]==cs[i]) j++; kcs[k]=cs[i]; kcc[k]=j-i; k++; i=j; } mx=cs[m]; 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)! t=ft[i]; t*=ift[i-c]; t%=MOD; t=expit(t, kcc[j]); v*=t; 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; }