結果
問題 | No.14 最小公倍数ソート |
ユーザー | chocorusk |
提出日時 | 2018-12-11 03:58:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 1,411 bytes |
コンパイル時間 | 980 ms |
コンパイル使用メモリ | 106,652 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-09-17 11:59:22 |
合計ジャッジ時間 | 2,379 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 5 ms
6,940 KB |
testcase_04 | AC | 49 ms
8,960 KB |
testcase_05 | AC | 26 ms
6,940 KB |
testcase_06 | AC | 29 ms
7,040 KB |
testcase_07 | AC | 34 ms
7,552 KB |
testcase_08 | AC | 40 ms
8,192 KB |
testcase_09 | AC | 46 ms
8,576 KB |
testcase_10 | AC | 46 ms
8,448 KB |
testcase_11 | AC | 48 ms
8,832 KB |
testcase_12 | AC | 48 ms
8,832 KB |
testcase_13 | AC | 47 ms
8,960 KB |
testcase_14 | AC | 47 ms
8,704 KB |
testcase_15 | AC | 50 ms
8,704 KB |
testcase_16 | AC | 28 ms
7,040 KB |
testcase_17 | AC | 23 ms
6,944 KB |
testcase_18 | AC | 15 ms
6,944 KB |
testcase_19 | AC | 37 ms
7,808 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:56:32: warning: ‘mna’ may be used uninitialized in this function [-Wmaybe-uninitialized] 56 | int mnl=10001, mna; | ^~~
ソースコード
#include <cstdio> #include <cstring> #include <string> #include <iostream> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> using namespace std; typedef long long int ll; typedef pair<int, int> P; int gcd(int a, int b){ if(b==0) return a; return gcd(b, a%b); } int main() { int n; cin>>n; int a[10000]; bool ok[10001]={}; vector<int> d[10001]; multiset<int> st[10001]; for(int i=0; i<n; i++){ cin>>a[i]; for(int j=1; j*j<=a[i]; j++){ if(a[i]%j==0){ if(!ok[a[i]]) d[a[i]].push_back(j); st[j].insert(a[i]); if(j*j<a[i]){ if(!ok[a[i]]) d[a[i]].push_back(a[i]/j); st[a[i]/j].insert(a[i]); } } } ok[a[i]]=1; } for(int i=1; i<=10000; i++){ if(!d[i].empty()) sort(d[i].begin(), d[i].end()); } int ans[10000]; ans[0]=a[0]; for(auto x:d[a[0]]){ auto itr=st[x].lower_bound(a[0]); st[x].erase(itr); } for(int i=1; i<n; i++){ int mnl=10001, mna; for(auto x:d[ans[i-1]]){ if(st[x].empty()) continue; int a1=*(st[x].begin()); if(mnl>a1/x){ mnl=a1/x; mna=a1; } } ans[i]=mna; for(auto x:d[mna]){ auto itr=st[x].lower_bound(mna); st[x].erase(itr); } } for(int i=0; i<n; i++){ cout<<ans[i]; if(i<n-1) cout<<" "; } cout<<endl; return 0; }