結果

問題 No.962 LCPs
ユーザー LeonardoneLeonardone
提出日時 2019-12-25 19:45:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,619 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 73,432 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-09-25 10:01:39
合計ジャッジ時間 3,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,524 KB
testcase_01 AC 6 ms
9,472 KB
testcase_02 AC 7 ms
9,472 KB
testcase_03 AC 6 ms
9,472 KB
testcase_04 AC 7 ms
9,472 KB
testcase_05 AC 5 ms
9,344 KB
testcase_06 AC 7 ms
9,472 KB
testcase_07 AC 7 ms
9,472 KB
testcase_08 AC 6 ms
9,472 KB
testcase_09 AC 6 ms
9,600 KB
testcase_10 AC 7 ms
9,600 KB
testcase_11 AC 6 ms
9,472 KB
testcase_12 AC 6 ms
9,440 KB
testcase_13 AC 7 ms
9,444 KB
testcase_14 AC 7 ms
9,528 KB
testcase_15 AC 6 ms
9,444 KB
testcase_16 AC 7 ms
9,572 KB
testcase_17 AC 29 ms
9,472 KB
testcase_18 AC 19 ms
9,456 KB
testcase_19 AC 20 ms
9,472 KB
testcase_20 AC 17 ms
9,456 KB
testcase_21 AC 17 ms
9,472 KB
testcase_22 AC 16 ms
9,472 KB
testcase_23 AC 16 ms
9,472 KB
testcase_24 AC 15 ms
9,472 KB
testcase_25 AC 15 ms
9,512 KB
testcase_26 AC 15 ms
9,472 KB
testcase_27 AC 16 ms
9,532 KB
testcase_28 AC 15 ms
9,472 KB
testcase_29 AC 14 ms
9,472 KB
testcase_30 AC 15 ms
9,472 KB
testcase_31 AC 17 ms
9,600 KB
testcase_32 AC 14 ms
9,464 KB
testcase_33 AC 20 ms
9,472 KB
testcase_34 AC 15 ms
9,452 KB
testcase_35 AC 15 ms
9,472 KB
testcase_36 AC 14 ms
9,464 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 10 ms
9,728 KB
testcase_48 AC 10 ms
9,600 KB
testcase_49 AC 10 ms
9,656 KB
testcase_50 AC 10 ms
9,856 KB
testcase_51 AC 10 ms
9,856 KB
testcase_52 AC 9 ms
9,728 KB
testcase_53 AC 10 ms
9,720 KB
testcase_54 AC 10 ms
9,728 KB
testcase_55 AC 9 ms
9,596 KB
testcase_56 AC 11 ms
9,944 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 11 ms
9,764 KB
testcase_61 AC 12 ms
9,728 KB
testcase_62 AC 12 ms
9,652 KB
testcase_63 AC 21 ms
9,472 KB
testcase_64 AC 12 ms
9,984 KB
testcase_65 AC 21 ms
9,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

void bins(int col, int minRow, int maxRow);

int n;
vector<string> vs(2e5);
long long ans;

int main() {
    cin >> n;
    vs.resize(n);
    for (int i = 0; i < n; i++) {
        cin >> vs[i];
    }
    // sort(vs.begin(), vs.end());
    
    // for (int i = 0; i < n; i++) cout << vs[i] << endl;
    
    bins(0, 0, n-1);
    
    cout << ans << endl;
    return 0;
}

void bins(int col, int minRow, int maxRow) {
    int lRow = minRow;
    for (int row = minRow; row <= maxRow; row++) {
        if (vs[lRow].size() <= col) {
            lRow = row; continue;
        }
        if (vs[row].size() <= col) {
            lRow = row; continue;
        } else if (vs[row][col] == vs[lRow][col]) {
            continue;
        }
        int len = row - lRow;
        if (len == 1) {
            ans += (long long)vs[lRow].size() - (long long)col;
        } else {
            long long lp = 1, rp = len;
            while (lp <= rp) {
                ans += lp * rp * (lp == rp ? 1LL : 2LL);
                lp++; rp--;
            }
            bins(col + 1, lRow, row - 1);
        }
        lRow = row;
    }
    if (vs[lRow].size() >= col) {
        int row = maxRow + 1;
        int len = row - lRow;
        if (len == 1) {
            ans += (long long)vs[lRow].size() - (long long)col;
        } else {
            long long lp = 1, rp = len;
            while (lp <= rp) {
                ans += lp * rp * (lp == rp ? 1LL : 2LL);
                lp++; rp--;
            }
            bins(col + 1, lRow, row - 1);
        }
    }
}
0