結果
問題 | No.368 LCM of K-products |
ユーザー |
![]() |
提出日時 | 2016-05-25 16:53:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 120 ms / 2,000 ms |
コード長 | 3,367 bytes |
コンパイル時間 | 1,875 ms |
コンパイル使用メモリ | 176,992 KB |
実行使用メモリ | 125,308 KB |
最終ジャッジ日時 | 2024-09-22 14:48:19 |
合計ジャッジ時間 | 6,834 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 35 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=int64_t; #define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define RER(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) template<typename T> void input(T &x, size_t n) { for(int i = 0; i < n; i++) { cin >> x[i]; } } //=====debug====== void* enabler; #define debug(...) cout << __VA_ARGS__ << endl; template<typename T> class has_begin_and_end { private: template<typename U> static auto check( U v ) -> decltype( v.begin(), v.end(), std::true_type() ); static auto check( ... ) -> decltype( std::false_type() ); public: typedef decltype( check( std::declval<T>() ) ) type; static bool const value = type::value; }; template<typename T> class has_top_and_pop { private: template<typename U> static auto check( U v ) -> decltype( v.empty(), v.top(), v.pop(), std::true_type() ); static auto check( ... ) -> decltype( std::false_type() ); public: typedef decltype( check( std::declval<T>() ) ) type; static bool const value = type::value; }; template<typename T> class has_front_and_pop { private: template<typename U> static auto check( U v ) -> decltype( v.empty(), v.front(), v.pop(), std::true_type() ); static auto check( ... ) -> decltype( std::false_type() ); public: typedef decltype( check( std::declval<T>() ) ) type; static bool const value = type::value; }; template<class T, typename std::enable_if<has_begin_and_end<T>::value>::type*& = enabler> void output(const T& val){ auto it = val.begin(); cout << (*it++); for(; it != val.end(); ++it) cout << ' ' << (*it); cout << endl; } template<class T, typename std::enable_if<has_top_and_pop<T>::value>::type*& = enabler> void output(T val){ while(!val.empty()){ debug(val.top()); val.pop(); } } template<class T, typename std::enable_if<has_front_and_pop<T>::value>::type*& = enabler> void output(T val){ while(!val.empty()){ debug(val.front()); val.pop(); } } template<class T, class U> ostream& operator<<(ostream& os, const pair<T,U>& v) { os << "(" << v.first << ", " << v.second << ")"; return os; } const int MAX = 1e9; const int MOD = 1e9+7; vector<int> prime; void make() { vector<bool> used(MAX); used[0] = used[1] = true; for(int i = 2; i*i < MAX; i++) { if(used[i]) continue; prime.emplace_back(i); for(int j = i+i; j < 1e7; j += i) { used[j] = true; } } } int main() { make(); int n, k; ll res = 1LL; cin >> n >> k; vector<int> a(n); input(a, n); vector<int> x[100000]; REP(i, n) { int k = a[i]; REP(j, prime.size()) { int count = 0; if(k == 1) break; while(k%prime[j]==0) { k/=prime[j]; count++; } if(prime.size() - 1 == j) { if(k > 1) { prime.emplace_back(k); } } if(count == 0) continue; x[j].emplace_back(count); } } REP(i, prime.size()){ sort(x[i].begin(), x[i].end(), greater<int>()); int l = min(k, (int)(x[i].size())); REP(j, l) { REP(k, x[i][j]) { res *= prime[i]; res %= MOD; } // cout << prime[i] << ' ' << x[i][j] << endl; //res *= ((ll)pow(prime[i], x[i][j]) % MOD); } } cout << res << endl; }