結果

問題 No.962 LCPs
ユーザー square1001square1001
提出日時 2020-01-11 21:07:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 85,888 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-05-04 10:55:51
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 72 ms
20,480 KB
testcase_18 AC 38 ms
11,880 KB
testcase_19 AC 39 ms
11,904 KB
testcase_20 AC 27 ms
8,960 KB
testcase_21 AC 27 ms
8,960 KB
testcase_22 AC 22 ms
7,680 KB
testcase_23 AC 21 ms
7,552 KB
testcase_24 AC 20 ms
6,656 KB
testcase_25 AC 19 ms
6,656 KB
testcase_26 AC 16 ms
6,272 KB
testcase_27 AC 25 ms
8,064 KB
testcase_28 AC 17 ms
6,400 KB
testcase_29 AC 15 ms
5,760 KB
testcase_30 AC 21 ms
7,552 KB
testcase_31 AC 27 ms
9,088 KB
testcase_32 AC 14 ms
5,632 KB
testcase_33 AC 36 ms
11,520 KB
testcase_34 AC 19 ms
6,400 KB
testcase_35 AC 16 ms
6,272 KB
testcase_36 AC 20 ms
6,944 KB
testcase_37 AC 13 ms
5,376 KB
testcase_38 AC 13 ms
5,376 KB
testcase_39 AC 13 ms
5,376 KB
testcase_40 AC 14 ms
5,376 KB
testcase_41 AC 14 ms
5,376 KB
testcase_42 AC 13 ms
5,376 KB
testcase_43 AC 13 ms
5,376 KB
testcase_44 AC 14 ms
5,376 KB
testcase_45 AC 14 ms
5,376 KB
testcase_46 AC 14 ms
5,376 KB
testcase_47 AC 4 ms
5,376 KB
testcase_48 AC 4 ms
5,376 KB
testcase_49 AC 5 ms
5,376 KB
testcase_50 AC 5 ms
5,376 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 4 ms
5,376 KB
testcase_54 AC 4 ms
5,376 KB
testcase_55 AC 3 ms
5,376 KB
testcase_56 AC 5 ms
5,376 KB
testcase_57 AC 4 ms
5,376 KB
testcase_58 AC 4 ms
5,376 KB
testcase_59 AC 5 ms
5,376 KB
testcase_60 AC 6 ms
5,376 KB
testcase_61 AC 6 ms
5,376 KB
testcase_62 AC 5 ms
5,376 KB
testcase_63 AC 51 ms
14,592 KB
testcase_64 AC 5 ms
5,376 KB
testcase_65 AC 51 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <set>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
	int N;
	cin >> N;
	vector<string> S(N);
	for (int i = 0; i < N; ++i) {
		cin >> S[i];
	}
	vector<int> A(N - 1);
	for (int i = 1; i < N; ++i) {
		int lcp = 0;
		for (int j = 0; j < S[i - 1].size() && j < S[i].size(); ++j) {
			if (S[i][j] != S[i - 1][j]) break;
			++lcp;
		}
		A[i - 1] = lcp;
	}
	vector<int> p(N - 1);
	for (int i = 0; i < N - 1; ++i) {
		p[i] = i;
	}
	sort(p.begin(), p.end(), [&](int i, int j) { return A[i] < A[j]; });
	set<int> s;
	s.insert(-1);
	s.insert(N - 1);
	long long ans = 0;
	for (int i = 0; i < N - 1; ++i) {
		set<int>::iterator it = s.lower_bound(p[i]);
		int r = *it, l = *(--it);
		ans += 1LL * (A[p[i]]) * (r - p[i]) * (p[i] - l) * (r - l + 2) / 2;
		s.insert(p[i]);
	}
	for (int i = 0; i < N; ++i) {
		ans += S[i].size();
	}
	cout << ans << endl;
	return 0;
}
0