結果

問題 No.852 連続部分文字列
ユーザー risujirohrisujiroh
提出日時 2019-07-26 21:40:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 945 ms / 3,153 ms
コード長 1,582 bytes
コンパイル時間 1,734 ms
コンパイル使用メモリ 173,528 KB
実行使用メモリ 235,080 KB
最終ジャッジ日時 2024-07-02 06:48:04
合計ジャッジ時間 13,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 17 ms
6,940 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 27 ms
9,216 KB
testcase_16 AC 16 ms
6,912 KB
testcase_17 AC 22 ms
8,320 KB
testcase_18 AC 28 ms
9,600 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 13 ms
6,144 KB
testcase_21 AC 28 ms
9,856 KB
testcase_22 AC 10 ms
5,632 KB
testcase_23 AC 20 ms
7,936 KB
testcase_24 AC 11 ms
6,016 KB
testcase_25 AC 20 ms
7,680 KB
testcase_26 AC 28 ms
9,600 KB
testcase_27 AC 17 ms
7,040 KB
testcase_28 AC 22 ms
8,320 KB
testcase_29 AC 29 ms
9,856 KB
testcase_30 AC 6 ms
5,376 KB
testcase_31 AC 30 ms
9,984 KB
testcase_32 AC 31 ms
10,240 KB
testcase_33 AC 945 ms
235,060 KB
testcase_34 AC 925 ms
234,824 KB
testcase_35 AC 924 ms
235,080 KB
testcase_36 AC 923 ms
234,824 KB
testcase_37 AC 929 ms
234,792 KB
testcase_38 AC 918 ms
235,076 KB
testcase_39 AC 934 ms
234,828 KB
testcase_40 AC 919 ms
235,000 KB
testcase_41 AC 932 ms
234,836 KB
testcase_42 AC 755 ms
234,948 KB
testcase_43 AC 848 ms
234,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;

struct DisjointSparseTable {
  using T = int;
  static T op(const T& x, const T& y) { return x | y; }

  const int n;
  VV<T> t;
  template<class Itr> DisjointSparseTable(Itr first, Itr last) :
    n(distance(first, last)), t(__lg(n) + 1, V<T>(first, last)) {
    for (int k = 1; k < (int) t.size(); ++k) {
      for (int i0 = 1 << k; i0 < n; i0 += 1 << k + 1) {
        for (int i = i0 + 1; i < min(i0 + (1 << k), n); ++i) {
          t[k][i] = op(t[k][i - 1], t[k][i]);
        }
        for (int i = i0 - 2; i >= i0 - (1 << k); --i) {
          t[k][i] = op(t[k][i], t[k][i + 1]);
        }
      }
    }
  }
  T acc(int l, int r) const {
    assert(l < r);
    if (l == --r) return t[0][l];
    int k = __lg(l ^ r);
    return op(t[k][l], t[k][r]);
  }
};

int main() {
  cin.tie(nullptr); ios::sync_with_stdio(false);
  string s; cin >> s;
  int n = s.size();
  V<> a(n);
  for (int i = 0; i < n; ++i) {
    a[i] = 1 << s[i] - 'a';
  }
  DisjointSparseTable dst(begin(a), end(a));
  VV<> b(n, V<>(27));
  for (int k = 1; k <= 26; ++k) {
    int r = 0;
    for (int l = 0; l < n; ++l) {
      while (r < n and __builtin_popcount(dst.acc(l, r + 1)) <= k) ++r;
      b[l][k] = r;
    }
  }
  lint sum = 0;
  for (int l = 0; l < n; ++l) {
    b[l][0] = l;
    for (int k = 1; k <= 26; ++k) {
      sum += (b[l][k] - b[l][k - 1]) * k;
    }
  }
  cout << fixed << setprecision(15) << sum / (0.5 * n * (n + 1)) << '\n';
}
0