結果

問題 No.14 最小公倍数ソート
ユーザー masamasa
提出日時 2015-01-22 05:10:31
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 739 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 62,120 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 00:10:54
合計ジャッジ時間 56,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 54 ms
5,376 KB
testcase_04 TLE -
testcase_05 AC 1,716 ms
5,376 KB
testcase_06 AC 2,001 ms
5,376 KB
testcase_07 AC 2,595 ms
5,376 KB
testcase_08 AC 3,382 ms
5,376 KB
testcase_09 AC 4,594 ms
5,376 KB
testcase_10 AC 4,622 ms
5,376 KB
testcase_11 AC 4,675 ms
5,376 KB
testcase_12 AC 4,809 ms
6,940 KB
testcase_13 AC 4,868 ms
6,944 KB
testcase_14 AC 4,783 ms
5,376 KB
testcase_15 AC 4,920 ms
6,940 KB
testcase_16 AC 1,905 ms
5,376 KB
testcase_17 AC 1,303 ms
5,376 KB
testcase_18 AC 573 ms
5,376 KB
testcase_19 AC 3,063 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>

using namespace std;

int gcd(int a, int b) {
	int tmp;
	while(b) {
		tmp = a;
		a = b;
		b = tmp % b;
	}
	return a;
}

long lcm(int a, int b) {
	return (long) a * b / gcd(a, b);
}

int main() {
	int n;

	cin >> n;
	vector<int> a(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}

	for (int i = 0; i < n - 1; i++) {
		int pos = i + 1;
		long mini = 1e18;
		for (int j = i + 1; j < n; j++) {
			long tmp = lcm(a[i], a[j]);
			if (tmp < mini || (tmp == mini && a[j] < a[pos]) ) {
				mini = tmp;
				pos = j;
			}
		}
		swap(a[i+1], a[pos]);
	}

	for (int i = 0; i < n; i++) {
		printf("%d%c", a[i], i != n - 1 ? ' ' : '\n');
	}
	return 0;
}
0