結果
問題 | No.14 最小公倍数ソート |
ユーザー | Mcpu3 |
提出日時 | 2018-12-11 17:48:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 462 ms |
コンパイル使用メモリ | 55,296 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-09-22 04:37:39 |
合計ジャッジ時間 | 7,039 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 73 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <algorithm> #include <cstdio> #include <vector> using namespace std; struct sequence { int a, lcm; }; bool comp(const sequence &a, const sequence &b) { if (a.lcm == b.lcm) return a.a < b.a; return a.lcm < b.lcm; } int gcd(int a, int b) { return b ? gcd(b, a % b) : a; } int LCM(int a, int b) { return a * b / gcd(a, b); } int main() { size_t N; sequence tmp1, tmp2; vector<sequence> array; scanf("%d", &N); for (size_t i = 0; i < N; ++i) { scanf("%d", &tmp1.a); array.push_back(tmp1); } for (size_t i = 0; i < N; ++i) { tmp1 = array[i]; for (size_t j = i + 1; j < N; ++j) { tmp2 = array[j]; tmp2.lcm = LCM(tmp1.a, tmp2.a); array[j] = tmp2; } sort(array.begin() + i + 1, array.end(), comp); } for (size_t i = 0; i < N; ++i) { tmp1 = array[i]; printf("%d ", tmp1.a); } }