結果
問題 | No.1195 数え上げを愛したい(文字列編) |
ユーザー | otera |
提出日時 | 2020-08-25 07:17:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 668 ms / 3,000 ms |
コード長 | 4,876 bytes |
コンパイル時間 | 1,739 ms |
コンパイル使用メモリ | 140,440 KB |
実行使用メモリ | 17,784 KB |
最終ジャッジ日時 | 2024-11-06 11:02:32 |
合計ジャッジ時間 | 11,968 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 662 ms
17,212 KB |
testcase_01 | AC | 667 ms
16,492 KB |
testcase_02 | AC | 668 ms
16,160 KB |
testcase_03 | AC | 77 ms
6,884 KB |
testcase_04 | AC | 92 ms
6,820 KB |
testcase_05 | AC | 122 ms
16,004 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 111 ms
6,820 KB |
testcase_09 | AC | 628 ms
17,784 KB |
testcase_10 | AC | 354 ms
9,752 KB |
testcase_11 | AC | 577 ms
16,340 KB |
testcase_12 | AC | 537 ms
16,056 KB |
testcase_13 | AC | 448 ms
10,432 KB |
testcase_14 | AC | 281 ms
9,756 KB |
testcase_15 | AC | 340 ms
9,628 KB |
testcase_16 | AC | 302 ms
9,592 KB |
testcase_17 | AC | 115 ms
6,816 KB |
testcase_18 | AC | 544 ms
16,464 KB |
testcase_19 | AC | 531 ms
16,836 KB |
testcase_20 | AC | 456 ms
10,764 KB |
testcase_21 | AC | 577 ms
16,192 KB |
testcase_22 | AC | 435 ms
10,000 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
ソースコード
/** * author: otera **/ #include<iostream> #include<string> #include<cstdio> #include<cstring> #include<vector> #include<cmath> #include<algorithm> #include<functional> #include<iomanip> #include<queue> #include<deque> #include<ciso646> #include<random> #include<map> #include<set> #include<complex> #include<bitset> #include<stack> #include<unordered_map> #include<unordered_set> #include<utility> #include<cassert> using namespace std; #define int long long typedef long long ll; typedef unsigned long long ul; typedef unsigned int ui; typedef long double ld; const int inf=1e9+7; const ll INF=1LL<<60 ; const ll mod=1e9+7 ; #define rep(i,n) for(int i=0;i<n;i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define Rep(i,sta,n) for(int i=sta;i<n;i++) #define rep1(i,n) for(int i=1;i<=n;i++) #define per1(i,n) for(int i=n;i>=1;i--) #define Rep1(i,sta,n) for(int i=sta;i<=n;i++) typedef complex<ld> Point; const ld eps = 1e-8; const ld pi = acos(-1.0); typedef pair<int, int> P; typedef pair<ld, ld> LDP; typedef pair<ll, ll> LP; #define fr first #define sc second #define all(c) c.begin(),c.end() #define pb push_back #define debug(x) cerr << #x << " = " << (x) << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } long long modinv(long long a, long long mod) { long long b = mod, u = 1, v = 0; while (b) { long long t = a/b; a -= t*b; swap(a, b); u -= t*v; swap(u, v); } u %= mod; if (u < 0) u += mod; return u; } template<const int md> struct ntt{ inline void add(int &a, int b) { a += b; if(a >= md) a -= md; } inline void sub(int &a, int b) { a -= b; if(a < 0) a += md; } inline int mul(int a, int b) { return (int)((ll)a*b%md); } inline int power(int a, long long b) { int res = 1; while (b > 0) { if (b & 1) res = mul(res, a); a = mul(a, a); b >>= 1; } return res; } inline int inv(int a) { a %= md; if (a < 0) a += md; int b = md, u = 0, v = 1; while (a) { int t = b / a; b -= t * a; swap(a, b); u -= t * v; swap(u, v); } assert(b == 1); if (u < 0) u += md; return u; } int max_base, root; vector<int> dw, idw; ntt() { int tmp = md - 1; max_base = 0; while (tmp % 2 == 0) { tmp /= 2; max_base++; } root = 2; while (power(root, (md-1)>>1) == 1) root++; dw.resize(max_base); idw.resize(max_base); rep(i, max_base){ sub(dw[i], power(root, (md-1) >> (i+2))); idw[i] = inv(dw[i]); } } void fft(vector<int> &a, bool inv) { const int n = a.size(); assert((n & (n - 1)) == 0); assert(__builtin_ctz(n) <= max_base); if(!inv){ for(int m=n;m>>=1;){ int w = 1; for(int s=0,k=0; s<n; s += 2*m){ for(int i=s, j=s+m ; i < s+m; ++i, ++j) { int x = a[i], y = mul(a[j], w); a[j] = (x>=y?x-y:x+md-y); a[i] = (x+y>=md?x+y-md:x+y); } w = mul(w, dw[__builtin_ctz(++k)]); } } } else{ for(int m=1;m<n;m*=2){ int w = 1; for(int s=0,k=0; s<n; s += 2*m){ for(int i=s, j=s+m ; i < s+m; ++i, ++j) { int x = a[i], y = a[j]; a[j] = (x>=y?x-y:x+md-y); a[j] = mul(a[j], w); a[i] = (x+y>=md?x+y-md:x+y); } w = mul(w, idw[__builtin_ctz(++k)]); } } } } vector<int> multiply(vector<int> a, vector<int> b, int eq = 0) { int need = a.size() + b.size() - 1; int nbase = 0; while ((1 << nbase) < need) nbase++; int sz = 1 << nbase; a.resize(sz); b.resize(sz); fft(a, 0); if (eq) b = a; else fft(b, 0); int inv_sz = inv(sz); for (int i = 0; i < sz; i++) { a[i] = mul(mul(a[i], b[i]), inv_sz); } fft(a, 1); a.resize(need); return a; } vector<int> square(vector<int> a) { return multiply(a, a, 1); } }; const int MOD = 998244353; ntt<MOD> NTT; void solve() { string s; cin >> s; int n = (int)s.size(); vector<int> cnt(26, 0); rep(i, n) { cnt[s[i] - 'a'] ++; } vector<ll> a(1, 1LL); sort(all(cnt)); rep(i, 26) { vector<ll> b(cnt[i] + 1, 1LL); ll cur = 1LL; rep(j, cnt[i] + 1) { if(j != 0) cur *= modinv(j, MOD); cur %= MOD; b[j] = cur; } a = NTT.multiply(a, b); } ll cur = 1; ll ans = 0; for(ll k = 1; k <= n; ++ k) { cur *= k; cur %= MOD; ans += (a[k] * cur) % MOD; if(ans >= MOD) ans -= MOD; } cout << ans << endl; } signed main() { ios::sync_with_stdio(false); cin.tie(0); //cout << fixed << setprecision(10); //int t; cin >> t; rep(i, t)solve(); solve(); return 0; }