結果

問題 No.852 連続部分文字列
ユーザー sinsincoscossinsincoscos
提出日時 2019-07-26 21:40:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 772 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 79,436 KB
実行使用メモリ 495,688 KB
最終ジャッジ日時 2024-07-02 06:46:12
合計ジャッジ時間 8,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 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 3 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 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 101 ms
11,648 KB
testcase_14 AC 45 ms
6,912 KB
testcase_15 AC 164 ms
16,768 KB
testcase_16 AC 100 ms
11,264 KB
testcase_17 AC 141 ms
14,592 KB
testcase_18 AC 176 ms
17,920 KB
testcase_19 AC 13 ms
5,376 KB
testcase_20 AC 81 ms
9,600 KB
testcase_21 AC 181 ms
18,176 KB
testcase_22 AC 57 ms
7,936 KB
testcase_23 AC 123 ms
13,312 KB
testcase_24 AC 70 ms
8,960 KB
testcase_25 AC 117 ms
12,800 KB
testcase_26 AC 177 ms
17,664 KB
testcase_27 AC 104 ms
11,776 KB
testcase_28 AC 142 ms
14,720 KB
testcase_29 AC 182 ms
18,048 KB
testcase_30 AC 34 ms
6,272 KB
testcase_31 AC 186 ms
18,688 KB
testcase_32 AC 197 ms
19,328 KB
testcase_33 MLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
using namespace std;
typedef long long ll;

int main(){
    string S;
    cin >> S;
    ll N = S.size();
    vector<vector<ll>> ne(N+2,vector<ll>(26,N));
    vector<vector<ll>> pre(N+2,vector<ll>(26,0));
    for(int i=1;i<=N;i++){
        for(int j=0;j<26;j++) pre[i][j] = pre[i-1][j];
        pre[i][S[i-1]-'a'] = i;
    }
    for(int i=N;i>=1;i--){
        for(int j=0;j<26;j++) ne[i][j] = ne[i+1][j];
        ne[i][S[i-1]-'a'] = i;
    }
    ll ans = 0;
    for(ll i=1;i<=N;i++){
        ll l = i-pre[i-1][S[i-1]-'a'],r = N+1-i;
        cerr << l << " " << r << endl;
        ans += l*r;
    }
//    cout << ans << endl;
    cout << fixed;
    cout << setprecision(10) << (long double) ans/(N*(N+1)/2) << endl;
}
0