結果
問題 | No.14 最小公倍数ソート |
ユーザー | rpy3cpp |
提出日時 | 2016-02-14 21:01:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 919 bytes |
コンパイル時間 | 567 ms |
コンパイル使用メモリ | 64,960 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 06:38:56 |
合計ジャッジ時間 | 48,004 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <utility> using namespace std; int lcm(int a, int b){ int ab = a * b; int tmp = 0; while (b){ tmp = a % b; a = b; b = tmp; } return ab / a; } void lcm_sort(vector<int> & a){ sort(a.begin() + 1, a.end()); for (int i = 0; i < a.size() - 2; ++i){ int ai = a[i]; int min_lcm = 100000001; int k = 0; for (int j = i + 1; j != a.size(); ++j){ int aj = a[j]; int lcmij = lcm(ai, aj); if (lcmij < min_lcm){ min_lcm = lcmij; k = j; } } swap(a[i + 1], a[k]); } } int main() { int n = 0; cin >> n; vector<int> a(n, 0); for (auto & ai : a) cin >> ai; lcm_sort(a); for (int i = 0; i != n; ++i) cout << a[i] << ((i == n-1) ? "\n" : " "); return 0; }