結果

問題 No.962 LCPs
ユーザー MisterMister
提出日時 2020-08-04 13:40:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 91,176 KB
実行使用メモリ 19,288 KB
最終ジャッジ日時 2024-09-14 14:32:30
合計ジャッジ時間 3,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 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 2 ms
5,376 KB
testcase_17 AC 14 ms
9,472 KB
testcase_18 AC 8 ms
6,400 KB
testcase_19 AC 9 ms
6,400 KB
testcase_20 AC 7 ms
5,504 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 5 ms
5,376 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 9 ms
6,272 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 6 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 6 ms
5,376 KB
testcase_42 AC 6 ms
5,376 KB
testcase_43 AC 5 ms
5,376 KB
testcase_44 AC 6 ms
5,376 KB
testcase_45 AC 6 ms
5,376 KB
testcase_46 AC 5 ms
5,376 KB
testcase_47 AC 9 ms
9,088 KB
testcase_48 AC 7 ms
8,320 KB
testcase_49 AC 10 ms
9,944 KB
testcase_50 AC 10 ms
9,984 KB
testcase_51 AC 13 ms
14,976 KB
testcase_52 AC 10 ms
11,776 KB
testcase_53 AC 11 ms
11,776 KB
testcase_54 AC 7 ms
7,168 KB
testcase_55 AC 6 ms
7,680 KB
testcase_56 AC 13 ms
13,568 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 3 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 3 ms
5,376 KB
testcase_61 AC 3 ms
5,376 KB
testcase_62 AC 3 ms
5,376 KB
testcase_63 AC 20 ms
17,068 KB
testcase_64 AC 17 ms
19,288 KB
testcase_65 AC 20 ms
17,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <functional>

using lint = long long;

void solve() {
    int n;
    std::cin >> n;

    std::vector<std::string> ss(n);
    for (auto& s : ss) {
        std::cin >> s;
        s.push_back('$');
    }

    lint ans = 0;
    std::function<void(int, int, int)> dfs =
        [&](int l, int r, int d) -> void {
        while (l < r && ss[l][d] == '$') ++l;
        if (l == r) return;

        int i = l;
        while (i < r && ss[i][d] == ss[l][d]) ++i;
        lint len = i - l;
        ans += len * (len + 1) * (len + 2) / 6;

        dfs(l, i, d + 1);
        dfs(i, r, d);
    };
    dfs(0, n, 0);

    std::cout << ans << "\n";
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0