結果
問題 | No.562 超高速一人かるた small |
ユーザー | hiroakie |
提出日時 | 2018-01-09 11:24:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 745 ms / 3,000 ms |
コード長 | 1,481 bytes |
コンパイル時間 | 713 ms |
コンパイル使用メモリ | 65,500 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-06-06 03:17:41 |
合計ジャッジ時間 | 6,021 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 105 ms
5,376 KB |
testcase_09 | AC | 404 ms
11,520 KB |
testcase_10 | AC | 148 ms
5,504 KB |
testcase_11 | AC | 345 ms
7,552 KB |
testcase_12 | AC | 31 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 271 ms
11,648 KB |
testcase_15 | AC | 259 ms
11,648 KB |
testcase_16 | AC | 745 ms
11,520 KB |
testcase_17 | AC | 258 ms
11,648 KB |
testcase_18 | AC | 277 ms
11,648 KB |
testcase_19 | AC | 280 ms
11,648 KB |
testcase_20 | AC | 299 ms
11,520 KB |
testcase_21 | AC | 270 ms
11,648 KB |
testcase_22 | AC | 294 ms
11,392 KB |
testcase_23 | AC | 257 ms
11,520 KB |
ソースコード
#include <iostream> #include <algorithm> #include <cstring> #include <sstream> using namespace std; typedef long long int ll; const ll N = 20, MOD = 1000000007; ll n; string crd[N]; ll dp[1 << N] = {}, ans[N] = {},fact[N+1]; int nmb(long bits) { bits = (bits & 0x55555555) + (bits >> 1 & 0x55555555); bits = (bits & 0x33333333) + (bits >> 2 & 0x33333333); bits = (bits & 0x0f0f0f0f) + (bits >> 4 & 0x0f0f0f0f); bits = (bits & 0x00ff00ff) + (bits >> 8 & 0x00ff00ff); return (bits & 0x0000ffff) + (bits >> 16 & 0x0000ffff); } void factorial() { fact[0] = 1; for (int i = 1; i <= N; i++)fact[i] = (fact[i - 1] * i) % MOD; } int main() { cin >> n; factorial(); for (int i = 0; i < n; i++) { cin >> crd[i]; crd[i] += " "; } sort(crd, crd + n); for (int s = 0; s < (1 << n); s++) { for (int i = 0; i < n; i++) { if ((s >> i) & 1)continue; int val=1; for (int j = i - 1; j >= 0; j--) { if ((s >> j) & 1)continue; for (int k = 0; k < crd[i].size(); k++) { if (crd[i][k] != crd[j][k]) { val = k + 1; break; } } break; } for (int j = i + 1; j<n; j++) { if ((s >> j) & 1)continue; for (int k = 0; k < crd[i].size(); k++) { if (crd[i][k] != crd[j][k]) { val = max(val,k + 1); break; } } break; } dp[s | (1 << i)] = (dp[s | (1 << i)] + dp[s] + (val*fact[nmb(s)])%MOD) % MOD; } } for (int s = 1; s < (1 << n); s++)ans[nmb(s) - 1] = (ans[nmb(s) - 1] + dp[s]) % MOD; for (int i = 0; i < n; i++)cout << ans[i] << endl; return 0; }