結果
問題 | No.811 約数の個数の最大化 |
ユーザー |
![]() |
提出日時 | 2020-11-18 19:20:47 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 1,120 bytes |
コンパイル時間 | 3,464 ms |
コンパイル使用メモリ | 196,556 KB |
最終ジャッジ日時 | 2025-01-16 01:35:23 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define FOR(i,a,b) for(int i=(a);i<(b);++i)#define REP(i,n) FOR(i,0,n)#define ALL(v) begin(v),end(v)template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }using ll = long long;using pii = pair<int, int>;constexpr ll INF = 1ll<<30;constexpr ll longINF = 1ll<<60;constexpr ll MOD = 1000000007;constexpr bool debug = 0;//---------------------------------//int main() {int N, K;cin >> N >> K;vector<bool> sieve(N, true);vector<int> pfcnt(N, 0), divc(N, 1), cnt(N, 0);FOR(i, 2, N) {if (!sieve[i]) continue;int ncnt = 0;for (int m = N; m % i == 0; m /= i, ++ncnt);for (int j = 1, t = i * j; t < N; ++j, t += i) {if (j % i > 0) cnt[j] = 0;cnt[t] = cnt[j] + 1;pfcnt[t] += min(cnt[t], ncnt);divc[t] *= cnt[t] + 1;sieve[t] = false;}}int ansc = -1, ans = -1;FOR(i, 1, N) if (pfcnt[i] >= K && chmax(ansc, divc[i])) ans = i;cout << ans << endl;return 0;}