結果

問題 No.14 最小公倍数ソート
ユーザー furafura
提出日時 2020-01-03 04:40:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 865 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 180,896 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-11-22 18:54:13
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 43 ms
9,344 KB
testcase_05 AC 23 ms
7,040 KB
testcase_06 AC 25 ms
7,424 KB
testcase_07 AC 29 ms
7,936 KB
testcase_08 AC 34 ms
8,448 KB
testcase_09 AC 40 ms
8,960 KB
testcase_10 AC 40 ms
8,960 KB
testcase_11 AC 41 ms
8,960 KB
testcase_12 AC 41 ms
9,088 KB
testcase_13 AC 42 ms
9,216 KB
testcase_14 AC 40 ms
9,088 KB
testcase_15 AC 43 ms
9,216 KB
testcase_16 AC 25 ms
7,424 KB
testcase_17 AC 21 ms
6,784 KB
testcase_18 AC 14 ms
6,144 KB
testcase_19 AC 33 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

const int INF=1<<29;

vector<int> divisors(int a){
	vector<int> res;
	for(int i=1;i*i<=a;i++) if(a%i==0) {
		res.emplace_back(i);
		if(i*i<a) res.emplace_back(a/i);
	}
	sort(res.begin(),res.end());
	return res;
}

int main(){
	int n; scanf("%d",&n);
	vector<int> a(n);
	rep(i,n) scanf("%d",&a[i]);

	vector<int> D[10001];
	multiset<int> S[10001];
	rep(i,n){
		if(D[a[i]].empty()) D[a[i]]=divisors(a[i]);
		for(auto d:D[a[i]]) S[d].emplace(a[i]);
	}

	vector<int> ans(n);
	int next=a[0];
	rep(i,n){
		ans[i]=next;
		for(auto d:D[next]) S[d].erase(S[d].find(next));

		int tmp=INF;
		for(auto d:D[next]) if(!S[d].empty()) {
			tie(tmp,next)=min(make_pair(tmp,next),make_pair(*S[d].begin()/d,*S[d].begin()));
		}
	}

	rep(i,n) printf("%d%c",ans[i],i<n-1?' ':'\n');

	return 0;
}
0