結果
問題 | No.28 末尾最適化 |
ユーザー | はまやんはまやん |
提出日時 | 2017-06-11 17:04:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 233 ms / 5,000 ms |
コード長 | 1,882 bytes |
コンパイル時間 | 1,666 ms |
コンパイル使用メモリ | 178,816 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 16:20:03 |
合計ジャッジ時間 | 2,268 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 233 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) using namespace std; void _main(); int main(){cin.tie(0);ios::sync_with_stdio(0);_main();} //--------------------------------------------------------------------------------------------------- map<int, int> enumpr(int n) { map<int, int> V; for (int i = 2; 1LL*i*i <= n; i++) while (n%i == 0) V[i]++, n /= i; if (n>1) V[n]++;return V;} /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int seed, N, K, B, X[10101]; //--------------------------------------------------------------------------------------------------- void solve() { cin >> seed >> N >> K >> B; N++; auto ep = enumpr(B); X[0] = seed; rep(i, 1, N) X[i] = 1 + ((1LL * X[i - 1] * X[i - 1] + 1LL * X[i - 1] * 12345) % 100000009); int ans = 10101010; for (auto p : ep) { vector<int> v; rep(i, 0, N) { int x = X[i], c = 0; while (x % p.first == 0) { c++; x /= p.first; } v.push_back(c); } sort(v.begin(), v.end()); int sm = 0; rep(i, 0, K) sm += v[i]; ans = min(ans, sm / p.second); } printf("%d\n", ans); } //--------------------------------------------------------------------------------------------------- void _main() { int Q; cin >> Q; rep(q, 0, Q) solve(); }