結果
問題 | No.14 最小公倍数ソート |
ユーザー | imulan |
提出日時 | 2018-01-22 18:29:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 65 ms / 5,000 ms |
コード長 | 1,527 bytes |
コンパイル時間 | 1,960 ms |
コンパイル使用メモリ | 177,256 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-06-07 17:22:55 |
合計ジャッジ時間 | 3,530 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 7 ms
5,376 KB |
testcase_04 | AC | 65 ms
8,448 KB |
testcase_05 | AC | 33 ms
6,528 KB |
testcase_06 | AC | 36 ms
6,784 KB |
testcase_07 | AC | 42 ms
7,168 KB |
testcase_08 | AC | 51 ms
7,680 KB |
testcase_09 | AC | 60 ms
8,192 KB |
testcase_10 | AC | 57 ms
8,192 KB |
testcase_11 | AC | 63 ms
8,192 KB |
testcase_12 | AC | 62 ms
8,320 KB |
testcase_13 | AC | 62 ms
8,320 KB |
testcase_14 | AC | 62 ms
8,320 KB |
testcase_15 | AC | 64 ms
8,448 KB |
testcase_16 | AC | 37 ms
6,656 KB |
testcase_17 | AC | 31 ms
6,272 KB |
testcase_18 | AC | 21 ms
5,504 KB |
testcase_19 | AC | 49 ms
7,424 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second #define dbg(x) cout<<#x" = "<<((x))<<endl template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;} template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;} int lcm(int x, int y){ return x/__gcd(x,y)*y; } vector<int> divisor(int n){ vector<int> ret; for(int i=1; i*i<=n; ++i){ if(n%i==0){ ret.pb(i); if(n/i!=i) ret.pb(n/i); } } sort(all(ret)); return ret; } const int N = 10010; multiset<int> d[N]; int main(){ int n; cin >>n; vector<int> a(n); rep(i,n) cin >>a[i]; for(int i=1; i<n; ++i){ for(int j:divisor(a[i])) d[j].insert(a[i]); } vector<int> ans; ans.pb(a[0]); for(int i=1; i<n; ++i){ int m = N*N; int nx = N; int now = ans.back(); for(int j:divisor(now))if(!d[j].empty()){ int tmp = *d[j].begin(); int L = lcm(now,tmp); if(L<m || (L==m && tmp<nx)){ m = lcm(now,tmp); nx = tmp; } } assert(nx!=N); for(int j:divisor(nx)) d[j].erase(d[j].find(nx)); ans.pb(nx); } rep(i,n) cout << ans[i] << " \n"[i==n-1]; return 0; }