結果
問題 | No.562 超高速一人かるた small |
ユーザー | koyumeishi |
提出日時 | 2017-06-18 15:20:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,485 bytes |
コンパイル時間 | 1,403 ms |
コンパイル使用メモリ | 111,736 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-15 16:35:52 |
合計ジャッジ時間 | 7,334 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 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 | 128 ms
5,248 KB |
testcase_05 | AC | 1,302 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | TLE | - |
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 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
/* O(n!) 全探索 */ #include <iostream> #include <string> #include <vector> #include <cassert> #include <random> #include <algorithm> #include <set> #include <chrono> using namespace std; void timer(){ static chrono::steady_clock::time_point start = chrono::steady_clock::now(); auto now = chrono::steady_clock::now(); cerr << "elapsed time : " << chrono::duration_cast<chrono::milliseconds>(now-start).count() << "[ms]" << endl; } const long long mod = 1000000007; long long ans[20]; int get_lcp_len(string& a, string& b){ for(int i=0; i<a.size() && i<b.size(); i++){ if( a[i] != b[i] ) return i; } return min(a.size(), b.size()); } void dfs(vector<string>& s, set<int>& ss, int dep, long long sum){ for(int i=1; i<s.size()-1; i++){ if( ss.count(i) == 0 ) continue; auto itr = ss.find(i); int pre = *prev(itr); int nxt = *next(itr); int len_a = get_lcp_len( s[i], s[pre] ); int len_b = get_lcp_len( s[i], s[nxt] ); long long sum_ = sum + max(len_a, len_b) + 1; (ans[dep] += sum_) %= mod; ss.erase(i); dfs(s, ss, dep+1, sum_); ss.insert(i); } } int main(){ timer(); int n; cin >> n; vector<string> s(n); for(int i=0; i<n; i++) cin >> s[i]; s.push_back(string(1, 'a'-1)); s.push_back(string(1, 'z'+1)); sort(s.begin(), s.end()); set<int> ss; for(int i=0; i<s.size(); i++){ ss.insert(i); } dfs(s, ss, 0, 0); for(int i=0; i<n; i++) cout << ans[i] << endl; timer(); return 0; }