結果
問題 | No.563 超高速一人かるた large |
ユーザー | chocorusk |
提出日時 | 2019-09-05 14:23:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,949 bytes |
コンパイル時間 | 839 ms |
コンパイル使用メモリ | 104,260 KB |
実行使用メモリ | 41,952 KB |
最終ジャッジ日時 | 2024-06-11 15:48:47 |
合計ジャッジ時間 | 6,261 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
41,952 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 69 ms
8,836 KB |
testcase_04 | AC | 292 ms
13,572 KB |
testcase_05 | AC | 418 ms
14,380 KB |
testcase_06 | TLE | - |
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 | -- | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; const ll MOD=1e9+7; ll powmod(ll a, ll k){ ll ap=a, ans=1; while(k){ if(k&1){ ans*=ap; ans%=MOD; } ap=ap*ap; ap%=MOD; k>>=1; } return ans; } ll inv(ll a){ return powmod(a, MOD-2); } ll f[200020], invf[200020]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD; invf[n]=inv(f[n]); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD; } ll comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]%MOD*invf[x-y]%MOD; } struct node{ node* nxt[27]; int cnt; node(){ fill(nxt, nxt+27, nullptr); cnt=0; } }; void add(node* t, string p){ node* t0=t; for(int i=0; i<p.size(); i++){ if(!t0->nxt[p[i]-'a']){ t0->nxt[p[i]-'a']=new node(); } t0=t0->nxt[p[i]-'a']; t0->cnt++; } } int n, k; ll c[202020]; void dfs(node* t, int d){ if(!t) return; int x=t->cnt; if(d && k>=x) (c[d]+=comb(k, x)*f[x]%MOD*comb(n-x, k-x)%MOD*f[k-x])%=MOD; for(int i=0; i<=26; i++){ if(!t->nxt[i]) continue; dfs(t->nxt[i], d+1); } } int main() { cin>>n; node t; int m=0; string s[2020]; for(int i=0; i<n; i++){ cin>>s[i]; m=max(m, (int)s[i].size()); } for(int i=0; i<n; i++){ while(s[i].size()<m) s[i]+='a'+26; add(&t, s[i]); } fac(n); for(int i=1; i<=n; i++){ fill(c, c+m+1, 0); k=i; ll ans=0; dfs(&t, 0); for(ll j=1; j<=m; j++){ (ans+=j*(c[j]-c[j-1]+MOD))%=MOD; } cout<<ans<<endl; } return 0; }