結果

問題 No.852 連続部分文字列
ユーザー chocoruskchocorusk
提出日時 2019-07-26 21:53:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 260 ms / 3,153 ms
コード長 1,087 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 96,968 KB
実行使用メモリ 5,424 KB
最終ジャッジ日時 2024-07-02 07:06:02
合計ジャッジ時間 6,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 6 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 8 ms
5,376 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 10 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 8 ms
5,376 KB
testcase_29 AC 11 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 11 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 258 ms
5,376 KB
testcase_34 AC 258 ms
5,424 KB
testcase_35 AC 257 ms
5,376 KB
testcase_36 AC 259 ms
5,376 KB
testcase_37 AC 259 ms
5,376 KB
testcase_38 AC 259 ms
5,376 KB
testcase_39 AC 258 ms
5,376 KB
testcase_40 AC 259 ms
5,376 KB
testcase_41 AC 260 ms
5,376 KB
testcase_42 AC 124 ms
5,376 KB
testcase_43 AC 184 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    string s; cin>>s;
    int n=s.size();
    ll sum[27]={};
    for(int i=1; i<=26; i++){
        int r=-1;
        int cnt[26]={};
        int x=0;
        for(int l=0; l<n; l++){
            while(r<n && x<=i){
                r++;
                cnt[s[r]-'a']++;
                if(cnt[s[r]-'a']==1) x++;
            }
            sum[i]+=(r-l);
            cnt[s[l]-'a']--;
            if(cnt[s[l]-'a']==0) x--;
        }
    }
    ll tot=0;
    for(ll i=1; i<=26; i++){
        tot+=(sum[i]-sum[i-1])*i;
    }
    ll p=(ll)n*(ll)(n+1)/2;
    double ans=(double)tot/(double)p;
    printf("%.6lf\n", ans);
    return 0;
}
0