結果

問題 No.962 LCPs
ユーザー polylogKpolylogK
提出日時 2019-12-20 23:12:41
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 873 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 123,096 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-30 15:58:24
合計ジャッジ時間 68,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
10,496 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
10,496 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
10,624 KB
testcase_10 AC 2 ms
9,984 KB
testcase_11 AC 2 ms
10,112 KB
testcase_12 AC 2 ms
10,240 KB
testcase_13 AC 2 ms
9,984 KB
testcase_14 AC 2 ms
10,496 KB
testcase_15 AC 2 ms
9,856 KB
testcase_16 AC 2 ms
9,728 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,819 ms
5,248 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,342 ms
5,248 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 425 ms
5,248 KB
testcase_38 AC 424 ms
5,248 KB
testcase_39 AC 421 ms
5,248 KB
testcase_40 AC 423 ms
5,248 KB
testcase_41 AC 423 ms
5,248 KB
testcase_42 AC 422 ms
5,248 KB
testcase_43 AC 419 ms
5,248 KB
testcase_44 AC 425 ms
5,248 KB
testcase_45 AC 427 ms
5,248 KB
testcase_46 AC 430 ms
5,248 KB
testcase_47 AC 4 ms
5,248 KB
testcase_48 AC 4 ms
5,248 KB
testcase_49 AC 5 ms
5,248 KB
testcase_50 AC 6 ms
5,248 KB
testcase_51 AC 5 ms
5,248 KB
testcase_52 AC 4 ms
5,248 KB
testcase_53 AC 5 ms
5,248 KB
testcase_54 AC 4 ms
5,248 KB
testcase_55 AC 3 ms
5,248 KB
testcase_56 AC 5 ms
5,248 KB
testcase_57 AC 26 ms
5,248 KB
testcase_58 AC 26 ms
5,248 KB
testcase_59 AC 26 ms
5,248 KB
testcase_60 AC 29 ms
5,248 KB
testcase_61 AC 29 ms
5,248 KB
testcase_62 AC 29 ms
5,248 KB
testcase_63 TLE -
testcase_64 AC 6 ms
5,248 KB
testcase_65 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:41:19: warning: format specifies type 'long long' but the argument has type 'i64' (aka 'long') [-Wformat]
   41 |         printf("%lld\n", ans);
      |                 ~~~~     ^~~
      |                 %ld
1 warning generated.

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <vector>
using namespace std::literals::string_literals;
using i64 = std::int_fast64_t;
using std::cout;
using std::cerr;
using std::endl;
using std::cin;

template<typename T>
std::vector<T> make_v(size_t a){return std::vector<T>(a);}

template<typename T,typename... Ts>
auto make_v(size_t a,Ts... ts){
  return std::vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...));
}

int main() {
	int n; scanf("%d", &n); std::vector<std::string> s(n);
	for(int i = 0; i < n; i++) cin >> s[i];

	i64 ans = 0;
	for(int i = 0; i < n; i++) {
		i64 LCP = 1 << 30;
		for(int j = i; j < n; j++) {
			LCP = std::min(LCP, (i64)s[j].size());

			int nxt = 0;
			for(int k = 0; k < LCP; k++) {
				if(s[i][k] != s[j][k]) break;

				nxt = k + 1;
			}
			LCP = nxt;

			ans += LCP * (j - i + 1);
		}
	}
	
	printf("%lld\n", ans);
	return 0;
}
0