結果
問題 | No.28 末尾最適化 |
ユーザー | 0w1 |
提出日時 | 2020-09-16 21:53:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,391 ms / 5,000 ms |
コード長 | 1,132 bytes |
コンパイル時間 | 1,971 ms |
コンパイル使用メモリ | 211,524 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-22 03:38:18 |
合計ジャッジ時間 | 3,809 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1,391 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); int Q; cin >> Q; while (Q--) { int Seed, N, K, B; cin >> Seed >> N >> K >> B; vector<int> X(N + 1); { X[0] = Seed; for (int i = 1; i <= N; ++i) { X[i] = (1 + ((int64_t) X[i - 1] * X[i - 1] + (int64_t) X[i - 1] * 12345)) % 100000009; } } vector<pair<int, int>> pe; { int b = B; for (int i = 2; i * i <= b; ++i) { if (b % i == 0) { pe.emplace_back(0, i); while (b % i == 0) pe.back().first++, b /= i; } } if (b > 1) pe.emplace_back(1, b); } int res = 1 << 30; for (auto b : pe) { int q = b.second; function<int(int, int)> dcnt = [&](int v, int p) { return v % p ? 0 : 1 + dcnt(v / p, p); }; sort(X.begin(), X.end(), [&](int a, int b) { return dcnt(a, q) < dcnt(b, q); }); for (auto c : pe) { int r = 0; for (int i = 0; i < K; ++i) { r += dcnt(X[i], c.second); } res = min(res, r / c.first); } } cout << res << endl; } return 0; }