結果

問題 No.962 LCPs
ユーザー kotatsugamekotatsugame
提出日時 2019-12-25 01:57:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 943 ms
コンパイル使用メモリ 85,832 KB
実行使用メモリ 23,132 KB
最終ジャッジ日時 2024-09-22 20:46:34
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,588 KB
testcase_01 AC 6 ms
11,648 KB
testcase_02 AC 6 ms
11,668 KB
testcase_03 AC 6 ms
11,648 KB
testcase_04 AC 5 ms
11,648 KB
testcase_05 AC 5 ms
11,648 KB
testcase_06 AC 6 ms
11,648 KB
testcase_07 AC 6 ms
11,648 KB
testcase_08 AC 6 ms
11,520 KB
testcase_09 AC 6 ms
11,648 KB
testcase_10 AC 6 ms
11,696 KB
testcase_11 AC 6 ms
11,648 KB
testcase_12 AC 6 ms
11,648 KB
testcase_13 AC 6 ms
11,520 KB
testcase_14 AC 6 ms
11,520 KB
testcase_15 AC 5 ms
11,648 KB
testcase_16 AC 5 ms
11,648 KB
testcase_17 AC 127 ms
23,132 KB
testcase_18 AC 62 ms
17,236 KB
testcase_19 AC 63 ms
17,236 KB
testcase_20 AC 44 ms
15,312 KB
testcase_21 AC 43 ms
15,444 KB
testcase_22 AC 34 ms
14,352 KB
testcase_23 AC 35 ms
14,356 KB
testcase_24 AC 28 ms
13,928 KB
testcase_25 AC 29 ms
13,928 KB
testcase_26 AC 26 ms
13,424 KB
testcase_27 AC 38 ms
14,764 KB
testcase_28 AC 25 ms
13,656 KB
testcase_29 AC 25 ms
13,312 KB
testcase_30 AC 36 ms
14,224 KB
testcase_31 AC 41 ms
15,440 KB
testcase_32 AC 21 ms
13,056 KB
testcase_33 AC 73 ms
17,092 KB
testcase_34 AC 30 ms
13,536 KB
testcase_35 AC 28 ms
13,396 KB
testcase_36 AC 31 ms
14,072 KB
testcase_37 AC 19 ms
13,048 KB
testcase_38 AC 20 ms
12,928 KB
testcase_39 AC 20 ms
13,036 KB
testcase_40 AC 20 ms
12,800 KB
testcase_41 AC 20 ms
12,800 KB
testcase_42 AC 20 ms
12,916 KB
testcase_43 AC 19 ms
13,044 KB
testcase_44 AC 20 ms
12,940 KB
testcase_45 AC 20 ms
13,056 KB
testcase_46 AC 20 ms
12,928 KB
testcase_47 AC 9 ms
11,904 KB
testcase_48 AC 9 ms
11,836 KB
testcase_49 AC 9 ms
11,904 KB
testcase_50 AC 10 ms
11,904 KB
testcase_51 AC 9 ms
11,984 KB
testcase_52 AC 8 ms
11,776 KB
testcase_53 AC 9 ms
11,904 KB
testcase_54 AC 8 ms
11,776 KB
testcase_55 AC 7 ms
11,776 KB
testcase_56 AC 10 ms
11,796 KB
testcase_57 AC 9 ms
11,904 KB
testcase_58 AC 10 ms
11,776 KB
testcase_59 AC 9 ms
12,032 KB
testcase_60 AC 10 ms
11,968 KB
testcase_61 AC 11 ms
11,892 KB
testcase_62 AC 10 ms
12,032 KB
testcase_63 AC 84 ms
19,152 KB
testcase_64 AC 11 ms
11,920 KB
testcase_65 AC 84 ms
19,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   10 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<set>
#include<vector>
#include<algorithm>
using namespace std;
int N;
string s[2<<17];
int d[2<<17];
long ans;
main()
{
	cin>>N;
	for(int i=0;i<N;i++)
	{
		cin>>s[i];
		ans+=s[i].size();
	}
	for(int i=0;i<N-1;i++)
	{
		while(d[i]<s[i].size()&&d[i]<s[i+1].size()&&s[i][d[i]]==s[i+1][d[i]])d[i]++;
	}
	vector<pair<int,int> >X;
	for(int i=0;i<N-1;i++)
	{
		X.push_back(make_pair(d[i],i+1));
	}
	sort(X.begin(),X.end());
	set<int>S;
	S.insert(0);
	S.insert(N);
	for(pair<int,int>p:X)
	{
		int id=p.second;
		set<int>::iterator it=S.lower_bound(id);
		long R=*it-id;
		it--;
		long L=id-*it;
		ans+=p.first*(R*L*(L+1)/2+L*R*(R+1)/2);
		S.insert(id);
	}
	cout<<ans<<endl;
}
0