結果

問題 No.1532 Different Products
ユーザー keijakkeijak
提出日時 2021-06-04 21:36:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 4,175 bytes
コンパイル時間 7,927 ms
コンパイル使用メモリ 394,952 KB
実行使用メモリ 726,196 KB
最終ジャッジ日時 2024-11-19 13:08:55
合計ジャッジ時間 237,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
71,472 KB
testcase_01 AC 2,093 ms
108,384 KB
testcase_02 AC 37 ms
71,480 KB
testcase_03 MLE -
testcase_04 AC 37 ms
71,544 KB
testcase_05 AC 37 ms
239,972 KB
testcase_06 AC 38 ms
71,560 KB
testcase_07 AC 38 ms
71,472 KB
testcase_08 MLE -
testcase_09 AC 87 ms
71,564 KB
testcase_10 AC 1,727 ms
108,256 KB
testcase_11 AC 796 ms
72,560 KB
testcase_12 MLE -
testcase_13 AC 2,231 ms
424,304 KB
testcase_14 TLE -
testcase_15 AC 66 ms
387,428 KB
testcase_16 TLE -
testcase_17 AC 758 ms
240,024 KB
testcase_18 AC 162 ms
69,992 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 AC 3,573 ms
117,512 KB
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 153 ms
71,428 KB
testcase_27 MLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 MLE -
testcase_34 TLE -
testcase_35 MLE -
testcase_36 TLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
testcase_52 MLE -
testcase_53 MLE -
testcase_54 MLE -
testcase_55 MLE -
testcase_56 MLE -
testcase_57 MLE -
testcase_58 MLE -
testcase_59 MLE -
testcase_60 MLE -
testcase_61 AC 37 ms
71,396 KB
testcase_62 AC 38 ms
64,600 KB
testcase_63 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP_(i, a_, b_, a, b, ...) \
  for (int i = (a), END_##i = (b); i < END_##i; ++i)
#define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
#define ALL(x) std::begin(x), std::end(x)
using i64 = long long;

#include <boost/multiprecision/cpp_int.hpp>
using Int = boost::multiprecision::checked_int128_t;
// using i256 = boost::multiprecision::int256_t;
// using i512 = boost::multiprecision::int512_t;
// using i1024 = boost::multiprecision::int1024_t;
// using Int = boost::multiprecision::cpp_int;

template <typename T, typename U>
inline bool chmax(T &a, U b) {
  return a < b and ((a = std::move(b)), true);
}
template <typename T, typename U>
inline bool chmin(T &a, U b) {
  return a > b and ((a = std::move(b)), true);
}
template <typename T>
inline int ssize(const T &a) {
  return (int)std::size(a);
}

template <typename T>
std::istream &operator>>(std::istream &is, std::vector<T> &a) {
  for (auto &x : a) is >> x;
  return is;
}
template <typename T, typename U>
std::ostream &operator<<(std::ostream &os, const std::pair<T, U> &a) {
  return os << "(" << a.first << ", " << a.second << ")";
}
template <typename Container>
std::ostream &print_seq(const Container &a, std::string_view sep = " ",
                        std::string_view ends = "\n",
                        std::ostream &os = std::cout) {
  auto b = std::begin(a), e = std::end(a);
  for (auto it = std::begin(a); it != e; ++it) {
    if (it != b) os << sep;
    os << *it;
  }
  return os << ends;
}
template <typename T, typename = void>
struct is_iterable : std::false_type {};
template <typename T>
struct is_iterable<T, std::void_t<decltype(std::begin(std::declval<T>())),
                                  decltype(std::end(std::declval<T>()))>>
    : std::true_type {};

template <typename T, typename = std::enable_if_t<
                          is_iterable<T>::value &&
                          !std::is_same<T, std::string_view>::value &&
                          !std::is_same<T, std::string>::value>>
std::ostream &operator<<(std::ostream &os, const T &a) {
  return print_seq(a, ", ", "", (os << "{")) << "}";
}

#ifdef ENABLE_DEBUG
#include "debug_dump.hpp"
#else
#define DUMP(...)
#endif

using namespace std;

#include <ext/pb_ds/assoc_container.hpp>

template <class K, class V>
using gp_hash_table = __gnu_pbds::gp_hash_table<
    K, V, std::hash<K>, std::equal_to<K>,
    __gnu_pbds::direct_mask_range_hashing<K>, __gnu_pbds::linear_probe_fn<>,
    __gnu_pbds::hash_standard_resize_policy<
        __gnu_pbds::hash_exponential_size_policy<>,
        __gnu_pbds::hash_load_check_resize_trigger<true>, true>>;

auto solve() {
  i64 n, K;
  cin >> n >> K;
  vector<int> va, vb;
  REP(i, 1, n + 1) {
    if (i & 1) {
      va.push_back(i);
    } else {
      vb.push_back(i);
    }
  }

  auto f = [&](auto &f, const vector<int> &v, int i, i64 acc,
               gp_hash_table<i64, i64> &mp) -> void {
    const int m = ssize(v);
    if (i == m) {
      return;
    }
    f(f, v, i + 1, acc, mp);

    acc *= v[i];
    if (acc <= K) {
      ++mp[acc];
      f(f, v, i + 1, acc, mp);
    }
  };
  gp_hash_table<i64, i64> ma, mb;
  ma.resize(1000000);
  mb.resize(1000000);
  ma[1] = 1;
  mb[1] = 1;
  f(f, va, 0, 1, ma);
  f(f, vb, 0, 1, mb);
  DUMP(ma);
  DUMP(mb);
  vector<pair<i64, i64>> ca(ssize(ma) + 1), cb(ssize(mb));
  {
    int i = 0;
    for (auto [k, v] : ma) {
      ++i;
      ca[i] = {k, v};
      // ca[i].second += ca[i - 1].second;
    }
    sort(ALL(ca));
    REP(j, 1, ssize(ca)) { ca[j].second += ca[j - 1].second; }
    i = 0;
    for (auto [k, v] : mb) {
      cb[i] = {k, v};
      ++i;
      // cb[i].second += cb[i - 1].second;
    }
    sort(ALL(cb));
  }
  ca.emplace_back(K + 1, 0);
  DUMP(ca);
  DUMP(cb);
  i64 ans = 0;
  {
    int i = 1, j = ssize(cb) - 1;
    for (; j >= 0; --j) {
      auto [x2, k2] = cb[j];
      while (i < ssize(ca) and ca[i].first * x2 <= K) {
        ++i;
      }
      ans += k2 * ca[i - 1].second;
      DUMP(x2, k2, ca[i - 1].second, ans);
    }
  }
  --ans;
  return ans;
}

int main() {
  ios_base::sync_with_stdio(false), cin.tie(nullptr);
  cout << solve() << "\n";
}
0