結果

問題 No.14 最小公倍数ソート
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-16 00:03:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 797 bytes
コンパイル時間 1,369 ms
コンパイル使用メモリ 164,064 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 14:41:02
合計ジャッジ時間 4,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 18 ms
5,376 KB
testcase_04 AC 158 ms
5,376 KB
testcase_05 AC 57 ms
5,376 KB
testcase_06 AC 74 ms
5,376 KB
testcase_07 AC 94 ms
5,376 KB
testcase_08 AC 118 ms
5,376 KB
testcase_09 AC 147 ms
5,376 KB
testcase_10 AC 149 ms
5,376 KB
testcase_11 AC 147 ms
5,376 KB
testcase_12 AC 149 ms
5,376 KB
testcase_13 AC 152 ms
5,376 KB
testcase_14 AC 152 ms
5,376 KB
testcase_15 AC 154 ms
5,376 KB
testcase_16 AC 95 ms
5,376 KB
testcase_17 AC 80 ms
5,376 KB
testcase_18 AC 54 ms
5,376 KB
testcase_19 AC 123 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int dp[10001];
int m[10001];

int main() {
	int N;
	cin >> N;
	vector<int> A(N);
	for (int i = 0; i < N; i++)
	{
		cin >> A[i];
		m[A[i]]++;
	}
	int next = A[0];
	m[next]--;
	cout << next;
	for (int i = 0; i < N - 1; i++)
	{
		vector<int> divisor;
		for (int j = 1; j <= next; j++)
		{
			if (next % j == 0){
				divisor.push_back(j);
				if(j * j != next) divisor.push_back(next / j);
			}
		}
		sort(divisor.begin(), divisor.end());
		int check = 99999;
		int ans = 0;
		for (auto d: divisor)
		{
			while (d * dp[d] <= 10000){
				if (m[d * dp[d]]){
					if (dp[d] < check){
						ans = d * dp[d];
						check = dp[d];
					}
					break;
				}
				else dp[d]++;
			}
		}
		
		next = ans;
		m[next]--;
		cout << " " << next;
	}
	cout << endl;
}



0