結果

問題 No.2215 Slide Subset Sum
ユーザー maspymaspy
提出日時 2023-02-11 12:58:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,455 bytes
コンパイル時間 5,443 ms
コンパイル使用メモリ 322,868 KB
実行使用メモリ 183,632 KB
最終ジャッジ日時 2024-07-08 02:50:38
合計ジャッジ時間 75,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 569 ms
39,300 KB
testcase_01 WA -
testcase_02 AC 2,976 ms
183,284 KB
testcase_03 TLE -
testcase_04 AC 2,966 ms
183,016 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 2,910 ms
178,396 KB
testcase_18 AC 2,878 ms
179,104 KB
testcase_19 AC 2,973 ms
183,328 KB
testcase_20 AC 2,916 ms
177,756 KB
testcase_21 TLE -
testcase_22 AC 2,948 ms
177,532 KB
testcase_23 AC 2,880 ms
175,720 KB
testcase_24 AC 2,894 ms
175,508 KB
testcase_25 AC 2,885 ms
176,196 KB
testcase_26 AC 2,886 ms
177,636 KB
testcase_27 AC 76 ms
9,600 KB
testcase_28 AC 95 ms
9,728 KB
testcase_29 AC 148 ms
15,104 KB
testcase_30 AC 1,203 ms
80,916 KB
testcase_31 AC 866 ms
61,312 KB
testcase_32 AC 197 ms
18,048 KB
testcase_33 AC 1,662 ms
110,156 KB
testcase_34 AC 1,312 ms
86,564 KB
testcase_35 AC 182 ms
17,072 KB
testcase_36 AC 478 ms
36,736 KB
testcase_37 AC 2,846 ms
175,140 KB
testcase_38 AC 261 ms
25,152 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 2,898 ms
177,792 KB
testcase_43 AC 2,198 ms
182,912 KB
testcase_44 AC 2,170 ms
183,056 KB
testcase_45 AC 2,857 ms
176,544 KB
testcase_46 AC 2,901 ms
176,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;
using mint = modint998244353;

// モノイド
using poly = vector<mint>;
poly unit = {};

poly op(poly f, poly g) {
  // unit
  if (f.empty()) return g;
  if (g.empty()) return f;
  int K = f.size();
  // より sparse な方を f にする
  int nf = 0, ng = 0;
  for (auto x: f)
    if (x.val() != 0) ++nf;
  for (auto x: g)
    if (x.val() != 0) ++ng;
  if (nf > ng) swap(f, g);
  // f[i] == 0 の場合を枝狩り。f が疎だと高速になる。
  poly h(K);
  for (int i = 0; i < K; ++i) {
    if (f[i].val() == 0) continue;
    for (int j = 0; j < K; ++j) {
      int k = (i + j < K ? i + j : i + j - K);
      h[k] += f[i] * g[j];
    }
  }
  return h;
}

void solve() {
  int N, M, K;
  cin >> N >> M >> K;
  vector<poly> A(N);
  for (int n = 0; n < N; ++n) {
    int a;
    cin >> a;
    A[n].resize(K);
    A[n][0] += 1, A[n][a] += 1;
  }

  using T = tuple<int, int, int>; // (index, left, right)
  int Q = N - M + 1;
  vector<T> query(Q);
  for (int q = 0; q < Q; ++q) { query[q] = {q, q, q + M}; }

  vector<int> ANS(Q);

  auto calc = [&](int L, int M, int R, vector<T>& query) -> void {
    static vector<poly> dp(N + 1);
    // 累積積の計算
    dp[M] = unit;
    for (int i = M; i > L; --i) dp[i - 1] = op(A[i - 1], dp[i]);
    for (int i = M; i < R; ++i) dp[i + 1] = op(dp[i], A[i]);
    // 答の計算
    for (auto [q, a, b]: query) {
      // 0 次だけでよいので、積を計算しきる必要はない
      poly &f = dp[a], &g = dp[b];
      mint ans = 0;
      for (int i = 0; i < K; ++i) {
        int j = (i == 0 ? 0 : K - i);
        ans += f[i] * g[j];
      }
      ans -= 1;
      ANS[q] = ans.val();
    }
  };

  auto dfs = [&](auto& dfs, int L, int R, vector<T>& query) -> void {
    if (R - L <= 1) {
      for (auto [q, a, b]: query) ANS[q] = (A[a][0].val() == 0 ? 1 : 0);
      return;
    }
    int M = (L + R) / 2;
    vector<T> query_L, query_R, other;
    for (auto [q, a, b]: query) {
      if (b <= M) query_L.emplace_back(q, a, b);
      if (M <= a) query_R.emplace_back(q, a, b);
      if (a < M && M < b) other.emplace_back(q, a, b);
    }
    calc(L, M, R, other), dfs(dfs, L, M, query_L), dfs(dfs, M, R, query_R);
  };
  dfs(dfs, 0, N, query);

  // 出力
  for (auto x: ANS) cout << x << '\n';
}

signed main() {
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  solve();
  return 0;
}
0