結果

問題 No.852 連続部分文字列
ユーザー Yukino DX.Yukino DX.
提出日時 2024-08-20 11:35:56
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 798 ms / 3,153 ms
コード長 953 bytes
コンパイル時間 17,560 ms
コンパイル使用メモリ 401,896 KB
実行使用メモリ 246,176 KB
最終ジャッジ日時 2024-08-20 11:36:57
合計ジャッジ時間 23,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 15 ms
6,940 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 22 ms
8,576 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 17 ms
7,552 KB
testcase_18 AC 22 ms
9,088 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 11 ms
6,940 KB
testcase_21 AC 26 ms
9,344 KB
testcase_22 AC 9 ms
6,940 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 AC 16 ms
6,940 KB
testcase_26 AC 24 ms
8,960 KB
testcase_27 AC 14 ms
6,940 KB
testcase_28 AC 19 ms
7,680 KB
testcase_29 AC 24 ms
9,216 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 25 ms
9,600 KB
testcase_32 AC 26 ms
9,856 KB
testcase_33 AC 774 ms
245,972 KB
testcase_34 AC 795 ms
246,176 KB
testcase_35 AC 789 ms
245,972 KB
testcase_36 AC 775 ms
246,000 KB
testcase_37 AC 790 ms
246,048 KB
testcase_38 AC 786 ms
245,956 KB
testcase_39 AC 768 ms
246,036 KB
testcase_40 AC 798 ms
246,024 KB
testcase_41 AC 787 ms
245,952 KB
testcase_42 AC 490 ms
246,024 KB
testcase_43 AC 690 ms
246,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::{input, marker::Bytes};

fn main() {
    input! {
        s:Bytes,
    }

    let s = s.into_iter().map(|si| si - b'a').collect::<Vec<_>>();
    const C: usize = 26;
    let n = s.len();
    let mut poss = vec![vec![0; C]; n + 1];
    for i in 0..n {
        for j in 0..C {
            if s[i] == j as u8 {
                poss[i + 1][j] = i + 1;
            } else {
                poss[i + 1][j] = poss[i][j];
            }
        }
    }

    let mut ans = 0;
    for i in 1..=n {
        let mut poss_cp = poss[i].clone();
        poss_cp.sort();

        let mut cnts = vec![0; C + 1];
        let mut prev = 0;
        for j in (1..=C).rev() {
            cnts[j] = poss_cp[C - j] - prev;
            prev = poss_cp[C - j];
        }

        // println!("i:{} {:?}",i,cnts);
        for j in 1..=C {
            ans += j * cnts[j];
        }
    }

    let ans = ans as f64 / (n * (n + 1) / 2) as f64;
    println!("{}", ans);
}
0