結果

問題 No.2510 Six Cube Sum Counting
ユーザー MisukiMisuki
提出日時 2024-01-17 01:32:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 731 ms / 4,000 ms
コード長 3,139 bytes
コンパイル時間 5,976 ms
コンパイル使用メモリ 346,092 KB
実行使用メモリ 298,232 KB
最終ジャッジ日時 2024-01-17 01:32:59
合計ジャッジ時間 28,818 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 726 ms
298,232 KB
testcase_01 AC 726 ms
298,232 KB
testcase_02 AC 691 ms
298,232 KB
testcase_03 AC 725 ms
298,232 KB
testcase_04 AC 685 ms
298,232 KB
testcase_05 AC 731 ms
298,232 KB
testcase_06 AC 695 ms
298,232 KB
testcase_07 AC 713 ms
298,232 KB
testcase_08 AC 692 ms
298,232 KB
testcase_09 AC 720 ms
298,232 KB
testcase_10 AC 692 ms
298,232 KB
testcase_11 AC 719 ms
298,232 KB
testcase_12 AC 722 ms
298,232 KB
testcase_13 AC 693 ms
298,232 KB
testcase_14 AC 717 ms
298,232 KB
testcase_15 AC 694 ms
298,232 KB
testcase_16 AC 721 ms
298,232 KB
testcase_17 AC 693 ms
298,232 KB
testcase_18 AC 731 ms
298,232 KB
testcase_19 AC 688 ms
298,232 KB
testcase_20 AC 731 ms
298,232 KB
testcase_21 AC 687 ms
298,232 KB
testcase_22 AC 716 ms
298,232 KB
testcase_23 AC 727 ms
298,232 KB
testcase_24 AC 695 ms
298,232 KB
testcase_25 AC 731 ms
298,232 KB
testcase_26 AC 695 ms
298,232 KB
testcase_27 AC 727 ms
298,232 KB
testcase_28 AC 708 ms
298,232 KB
testcase_29 AC 730 ms
298,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O2")
#include <algorithm>
#include <array>
#include <bit>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cfenv>
#include <cfloat>
#include <chrono>
#include <cinttypes>
#include <climits>
#include <cmath>
#include <compare>
#include <complex>
#include <concepts>
#include <cstdarg>
#include <cstddef>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <deque>
#include <fstream>
#include <functional>
#include <initializer_list>
#include <iomanip>
#include <ios>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <map>
#include <memory>
#include <new>
#include <numbers>
#include <numeric>
#include <ostream>
#include <queue>
#include <random>
#include <ranges>
#include <set>
#include <span>
#include <sstream>
#include <stack>
#include <streambuf>
#include <string>
#include <tuple>
#include <type_traits>
#include <variant>
#include <bits/extc++.h>

//#define int ll
#define INT128_MAX (__int128)(((unsigned __int128) 1 << ((sizeof(__int128) * __CHAR_BIT__) - 1)) - 1)
#define INT128_MIN (-INT128_MAX - 1)

#ifdef DEBUG
#define dbg(x) cout << (#x) << " = " << x << '\n'
#else
#define dbg(x)
#endif

namespace R = std::ranges;
namespace V = std::views;

using namespace std;

using ll = long long;
using ull = unsigned long long;
using ldb = long double;
//#define double ldb

template<class T, size_t N>
ostream& operator<<(ostream& os, const array<T, N> &arr) {
  for(const T &X : arr)
    os << X << ' ';
  return os;
}
template<class T>
ostream& operator<<(ostream& os, const vector<T> &vec) {
  for(const T &X : vec)
    os << X << ' ';
  return os;
}
template<class T>
ostream& operator<<(ostream& os, const set<T> &s) {
  for(const T &x : s)
    os << x << ' ';
  return os;
}

/**
 * template name: hashTable
 * reference: https://codeforces.com/blog/entry/62393
 * last update: 2022/12/03
 * header: bit/extc++.h (or ext/pb_ds/assoc_container.hpp for CF)
 */

struct custom_hash {
    static uint64_t splitmix64(uint64_t x) {
        x += 0x9e3779b97f4a7c15;
        x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;
        x = (x ^ (x >> 27)) * 0x94d049bb133111eb;
        return x ^ (x >> 31);
    }

    size_t operator()(uint64_t x) const {
        static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count();
        return splitmix64(x + FIXED_RANDOM);
    }
};

using namespace __gnu_pbds;

gp_hash_table<ll, int, custom_hash> tmp({}, {}, {}, {}, {1 << 22});

int x;
ll ans;
const int C = 300;
void dfs(int i, int pre, int sum) {
  if (i == -1) {
    if (tmp.find(x - sum) != tmp.end())
      ans += tmp[x - sum];
  } else {
    for(int j = 0; j <= pre; j++)
      dfs(i - 1, j, sum + j * j * j);
  }
}

void dfs2(int i, int pre, int sum) {
  if (i == 6) {
    tmp[sum] += 1;
  } else {
    for(int j = pre; j <= C; j++)
      dfs2(i + 1, j, sum + j * j * j);
  }
}

signed main() {
  ios::sync_with_stdio(false), cin.tie(NULL);

  cin >> x;

  for(int c = C; c >= 0; c--) {
    dfs2(4, c, c * c * c);
    dfs(1, c, c * c * c);
  }

  cout << ans << '\n';

  return 0;
}
0