結果
問題 | No.14 最小公倍数ソート |
ユーザー | msm1993 |
提出日時 | 2019-04-16 13:10:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 63 ms / 5,000 ms |
コード長 | 1,248 bytes |
コンパイル時間 | 669 ms |
コンパイル使用メモリ | 74,076 KB |
実行使用メモリ | 9,216 KB |
最終ジャッジ日時 | 2024-09-22 08:13:46 |
合計ジャッジ時間 | 2,214 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 6 ms
6,944 KB |
testcase_04 | AC | 63 ms
9,216 KB |
testcase_05 | AC | 31 ms
7,040 KB |
testcase_06 | AC | 33 ms
7,296 KB |
testcase_07 | AC | 42 ms
7,552 KB |
testcase_08 | AC | 49 ms
8,192 KB |
testcase_09 | AC | 54 ms
8,960 KB |
testcase_10 | AC | 52 ms
8,832 KB |
testcase_11 | AC | 56 ms
9,216 KB |
testcase_12 | AC | 55 ms
8,960 KB |
testcase_13 | AC | 57 ms
9,216 KB |
testcase_14 | AC | 55 ms
9,088 KB |
testcase_15 | AC | 58 ms
9,216 KB |
testcase_16 | AC | 33 ms
7,040 KB |
testcase_17 | AC | 27 ms
6,940 KB |
testcase_18 | AC | 18 ms
6,944 KB |
testcase_19 | AC | 44 ms
8,192 KB |
ソースコード
#include<iostream> #include<set> #include<vector> using namespace std; int gcd(int a, int b){ return b == 0 ? a : gcd(b, a%b); } int main(){ int n; cin >> n; vector<int> v(n), divs[n]; set<pair<int,int>> s[10001]; for(int i = 0; i < n; i++){ cin >> v[i]; for(int j = 1; j*j <= v[i]; j++){ if(v[i]%j) continue; divs[i].push_back(j); s[j].insert({v[i], i}); if(j*j != v[i]){ divs[i].push_back(v[i]/j); s[v[i]/j].insert({v[i], i}); } } } vector<int> ans; int use = 0; for(int i = 0; i < n; i++){ ans.push_back(v[use]); int take = -1; pair<int,int> tmp(1<<30,10001); // gcd, val for(int d : divs[use]){ s[d].erase({v[use], use}); if(s[d].empty()) continue; pair<int,int> cand = *(s[d].begin()); int lcm = cand.first*v[use]/gcd(cand.first, v[use]); pair<int,int> q(lcm, cand.first); if(q < tmp){ tmp = q; take = cand.second; } } use = take; } for(int i = 0; i < n; i++) cout << ans[i] << " \n"[i==n-1]; return 0; }