結果
問題 | No.2510 Six Cube Sum Counting |
ユーザー | Misuki |
提出日時 | 2024-01-17 01:32:26 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 961 ms / 4,000 ms |
コード長 | 3,139 bytes |
コンパイル時間 | 6,435 ms |
コンパイル使用メモリ | 346,256 KB |
実行使用メモリ | 298,324 KB |
最終ジャッジ日時 | 2024-09-28 03:08:02 |
合計ジャッジ時間 | 36,312 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 936 ms
298,200 KB |
testcase_01 | AC | 929 ms
298,116 KB |
testcase_02 | AC | 931 ms
298,100 KB |
testcase_03 | AC | 922 ms
298,064 KB |
testcase_04 | AC | 927 ms
298,132 KB |
testcase_05 | AC | 929 ms
298,144 KB |
testcase_06 | AC | 918 ms
298,064 KB |
testcase_07 | AC | 937 ms
298,208 KB |
testcase_08 | AC | 931 ms
298,232 KB |
testcase_09 | AC | 930 ms
298,024 KB |
testcase_10 | AC | 919 ms
298,180 KB |
testcase_11 | AC | 931 ms
298,124 KB |
testcase_12 | AC | 932 ms
298,208 KB |
testcase_13 | AC | 932 ms
298,208 KB |
testcase_14 | AC | 950 ms
298,164 KB |
testcase_15 | AC | 959 ms
298,144 KB |
testcase_16 | AC | 932 ms
298,204 KB |
testcase_17 | AC | 930 ms
298,136 KB |
testcase_18 | AC | 922 ms
298,136 KB |
testcase_19 | AC | 930 ms
298,204 KB |
testcase_20 | AC | 926 ms
298,176 KB |
testcase_21 | AC | 928 ms
298,200 KB |
testcase_22 | AC | 961 ms
298,096 KB |
testcase_23 | AC | 951 ms
298,144 KB |
testcase_24 | AC | 940 ms
298,064 KB |
testcase_25 | AC | 947 ms
298,324 KB |
testcase_26 | AC | 930 ms
298,192 KB |
testcase_27 | AC | 929 ms
298,200 KB |
testcase_28 | AC | 931 ms
298,204 KB |
testcase_29 | AC | 928 ms
298,212 KB |
ソースコード
#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; }