結果
問題 | No.562 超高速一人かるた small |
ユーザー | mamekin |
提出日時 | 2017-09-04 22:55:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,752 bytes |
コンパイル時間 | 1,339 ms |
コンパイル使用メモリ | 113,492 KB |
実行使用メモリ | 11,592 KB |
最終ジャッジ日時 | 2024-11-06 20:56:26 |
合計ジャッジ時間 | 10,928 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> using namespace std; const int MOD = 1000000007; int n; vector<vector<int> > len; vector<long long> memo; vector<long long> cnt; long long solve(bitset<32> bs) { if(memo[bs.to_ulong()] != -1) return memo[bs.to_ulong()]; int m = bs.count(); long long tmp = 1; for(int i=1; i<m; ++i){ tmp *= i; tmp %= MOD; } long long ans = 0; for(int i=0; i<n; ++i){ if(!bs[i]) continue; int add = 1; for(int j=0; j<n; ++j){ if(!bs[j]) add = max(add, len[i][j]); } ans += add * tmp; ans %= MOD; bs[i] = false; ans += solve(bs); bs[i] = true; } cnt[bs.count()] += ans; return memo[bs.to_ulong()] = ans; } int main() { cin >> n; vector<string> s(n); for(int i=0; i<n; ++i) cin >> s[i]; len.assign(n, vector<int>(n, 0)); for(int i=0; i<n; ++i){ for(int j=0; j<i; ++j){ int m = min(s[i].size(), s[j].size()); int k = 0; while(k < m && s[i][k] == s[j][k]) ++ k; len[i][j] = len[j][i] = k + 1; } } memo.assign(1<<n, -1); cnt.assign(n+1, 0); solve((1<<n)-1); for(int i=1; i<=n; ++i) cout << cnt[i] << endl; return 0; }