結果
問題 | No.14 最小公倍数ソート |
ユーザー | btk |
提出日時 | 2015-05-04 23:35:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,372 bytes |
コンパイル時間 | 891 ms |
コンパイル使用メモリ | 93,056 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-07-05 19:02:28 |
合計ジャッジ時間 | 5,037 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> #include<functional> using namespace std; //(1/約数,元の数) typedef pair<int, int> P; int main(void){ int N; int A[10000]; vector <list<int>> sorted(10001); vector<list<int>>divisor(10000); cin >> N; for (int i = 0; i < N; i++) { cin >> A[i]; } sort(A + 1, A + N); for (int i = 0; i <N; i++) { for (int j = 1; j*j <= A[i]; j++) { if (A[i] % j == 0){ divisor[i].push_back(j); sorted[j].push_back(i); if (j*j != A[i]){ divisor[i].push_back(A[i] / j); sorted[A[i] / j].push_back(i); } } } } int now = 0; for (int i = 0; i < N-1; i++) { cout << A[now] << " "; int pivot = A[now]; A[now] = -1; P res = make_pair(10000, 10000); for (auto &div : divisor[now]) { while (sorted[div].empty()==false && A[sorted[div].front()] == -1) sorted[div].pop_front(); if (sorted[div].empty())continue; int k = sorted[div].front(); res = min(res, make_pair(pivot*(A[k] / div), sorted[div].front())); //cout << "("<<A[k]; } now = res.second; //cout << endl; } cout << A[now]<< endl; return 0; }