結果
問題 | No.28 末尾最適化 |
ユーザー | Min_25 |
提出日時 | 2016-07-11 22:08:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 52 ms / 5,000 ms |
コード長 | 2,239 bytes |
コンパイル時間 | 1,281 ms |
コンパイル使用メモリ | 97,868 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-14 19:46:40 |
合計ジャッジ時間 | 1,795 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 52 ms
6,816 KB |
ソースコード
#pragma GCC optimize ("O3") #pragma GCC target ("avx") // yukicoder // #pragma GCC target ("sse4") // SPOJ, codechef #include <cstdio> #include <cassert> #include <cmath> #include <cstring> #include <complex> #include <algorithm> #include <iostream> #include <vector> #include <map> #include <set> #include <functional> #include <tuple> #define _rep(_1, _2, _3, _4, name, ...) name #define rep2(i, n) rep3(i, 0, n) #define rep3(i, a, b) rep4(i, a, b, 1) #define rep4(i, a, b, c) for (int i = int(a); i < int(b); i += int(c)) #define rep(...) _rep(__VA_ARGS__, rep4, rep3, rep2, _)(__VA_ARGS__) using namespace std; using i64 = long long; using u8 = unsigned char; using u32 = unsigned; using u64 = unsigned long long; using f80 = long double; struct ExactDiv { ExactDiv() {} ExactDiv(u32 n) : d(n) { t = u32(-1) / n; i = n; rep(_, 5) i *= 2 - i * n; } bool divide(u32 n) { return n * i <= t; } u32 d, i, t; }; int X[11111]; void solve() { int Q; while (~scanf("%d", &Q)) { rep(i, Q) { int S, N, K, B; scanf("%d %d %d %d", &S, &N, &K, &B); vector< pair<int, int> > facs; for (int i = 2; i <= B; ++i) if (B % i == 0) { int e = 0; while (B % i == 0) B /= i, e += 1; facs.push_back({i, e}); } X[0] = S; rep(i, 1, N + 1) { int x = X[i - 1]; X[i] = 1 + i64(x) * (x + 12345) % 100000009; } int ans = 1e9; for (auto d : facs) { int p = d.first; int vs[32] = {}; if (p & (p - 1)) { auto e = ExactDiv(p); rep(i, N + 1) { u32 x = X[i]; int t = 0; while (e.divide(x)) x *= e.i, ++t; vs[t] += 1; } } else { rep(i, N + 1) vs[__builtin_ctz(X[i])] += 1; } int c = 0, t = 0; rep(i, 32) { if (c + vs[i] >= K) { t += i * (K - c); break; } t += vs[i] * i; c += vs[i]; } ans = min(ans, t / d.second); } printf("%d\n", ans); } } } int main() { clock_t beg = clock(); solve(); clock_t end = clock(); fprintf(stderr, "%.3f sec\n", double(end - beg) / CLOCKS_PER_SEC); return 0; }