結果
問題 | No.368 LCM of K-products |
ユーザー | ふーらくたる |
提出日時 | 2016-07-06 08:16:53 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 329 ms / 2,000 ms |
コード長 | 1,948 bytes |
コンパイル時間 | 821 ms |
コンパイル使用メモリ | 81,864 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 14:52:03 |
合計ジャッジ時間 | 2,605 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
6,816 KB |
testcase_01 | AC | 94 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 30 ms
6,940 KB |
testcase_04 | AC | 10 ms
6,944 KB |
testcase_05 | AC | 329 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 21 ms
6,944 KB |
testcase_14 | AC | 34 ms
6,944 KB |
testcase_15 | AC | 37 ms
6,940 KB |
testcase_16 | AC | 30 ms
6,944 KB |
testcase_17 | AC | 28 ms
6,940 KB |
testcase_18 | AC | 38 ms
6,940 KB |
testcase_19 | AC | 11 ms
6,944 KB |
testcase_20 | AC | 27 ms
6,944 KB |
testcase_21 | AC | 8 ms
6,940 KB |
testcase_22 | AC | 36 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | AC | 1 ms
6,944 KB |
testcase_32 | AC | 1 ms
6,940 KB |
testcase_33 | AC | 15 ms
6,940 KB |
testcase_34 | AC | 3 ms
6,944 KB |
ソースコード
#include <iostream> #include <map> #include <queue> #include <vector> using namespace std; #define int long long typedef priority_queue<int, vector<int>, greater<int> > Queue; const int kMOD = 1000 * 1000 * 1000 + 7; const int kMAX_N = 1010; const int kMAX_K = 1010; int N, K; int a[kMAX_N]; int GCD(int a, int b) { if (b == 0) return a; else return GCD(b, a % b); } int LCM(int a, int b) { return a * b / GCD(a, b); } map<int, int> PrimeFactors(int n) { map<int, int> res; for (int i = 2; i * i <= n; i++) { while (n % i == 0) { res[i]++; n /= i; } } if (n != 1) res[n] = 1; return res; } void Solve() { map<int, Queue> biggest_factors; for (int i = 0; i < N; i++) { map<int, int> factors = PrimeFactors(a[i]); for (map<int, int>::iterator it = factors.begin(); it != factors.end(); it++) { if (biggest_factors.find(it->first) == biggest_factors.end()) { biggest_factors[it->first] = Queue(); } if (biggest_factors[it->first].size() < K) { biggest_factors[it->first].push(it->second); } else if (biggest_factors[it->first].top() < it->second) { biggest_factors[it->first].pop(); biggest_factors[it->first].push(it->second); } } } int answer = 1; for (map<int, Queue>::iterator it = biggest_factors.begin(); it != biggest_factors.end(); it++) { while (!it->second.empty()) { int exponent = it->second.top(); it->second.pop(); for (int i = 0; i < exponent; i++) { answer *= it->first; answer %= kMOD; } } } cout << answer << endl; } signed main() { cin >> N >> K; for (int i = 0; i < N; i++) { cin >> a[i]; } Solve(); return 0; }