結果
問題 | No.14 最小公倍数ソート |
ユーザー | kei |
提出日時 | 2018-03-31 00:11:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,130 bytes |
コンパイル時間 | 1,743 ms |
コンパイル使用メモリ | 176,168 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-06-26 00:59:25 |
合計ジャッジ時間 | 8,244 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,656 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int INF = 1e9; const ll LINF = 1e18; template<class S,class T> ostream& operator << (ostream& out,const pair<S,T>& o){ out << "(" << o.first << "," << o.second << ")"; return out; } template<class T> ostream& operator << (ostream& out,const vector<T> V){ for(int i = 0; i < V.size(); i++){ out << V[i]; if(i!=V.size()-1) out << " ";} return out; } template<class T> ostream& operator << (ostream& out,const vector<vector<T> > Mat){ for(int i = 0; i < Mat.size(); i++) { if(i != 0) out << endl; out << Mat[i];} return out; } template<class S,class T> ostream& operator << (ostream& out,const map<S,T> mp){ out << "{ "; for(auto it = mp.begin(); it != mp.end(); it++){ out << it->first << ":" << it->second; if(mp.size()-1 != distance(mp.begin(),it)) out << ", "; } out << " }"; return out; } /* <url:https://yukicoder.me/problems/no/14> 問題文============================================================ 最小公倍数を習ったばかりのLarryは、最小公倍数ソートというのを思いついた。 ここで「最小公倍数ソート」とは、 N個の整数(重複を含む)が与えられ、それぞれai (1≤i≤N)とする。 a1を固定し、a2〜aNをそれぞれa1に対して最小公倍数を取り、最小公倍数が小さい順に並べ変えるソートのことであるとする。 (最小公倍数の最小が複数ある場合は、元の数が少ない方が優先される) Larryは、 この時出来た配列を新たにa1…aNの名前をつけなおして操作を続ける。 次にa2を固定し(a1も固定したまま)、a3〜aNを「最小公倍数ソート」していく。 次にa3を固定し...と続けていった時にaNまで行った時になる数列を求めてください。 (C/C++だと愚直な解法でぎりぎり通ってしまいますが、計算量が抑えられる方法があるので★4になってます。) ================================================================= 解説============================================================= ================================================================ */ /* gcd : 最大公約数 lcm : 最小公倍数 */ inline ll gcd(ll a, ll b) { return b ? gcd(b, a%b) : a; } inline ll lcm(ll a, ll b) { return a / gcd(a, b)*b; } void solve(){ ll N; cin >> N; vector<ll> a(N); for(auto& in:a) cin >> in; priority_queue<pll,vector<pll>,greater<pll>> pq[2]; bool cur = false; bool next = true; cout << a[0]; for(int i = 1; i < N;i++) pq[cur].push({a[i],a[i]}); for(int i = 1; i < N;i++){ auto pn = pq[cur].top(); cout << " " << pn.second; pq[cur].pop(); while(pq[cur].size()){ auto p = pq[cur].top(); pq[cur].pop(); pq[next].push({lcm(p.second,pn.second),p.second}); } cur = !cur; next = !next; } cout << endl; return; } int main(void) { cin.tie(0); ios::sync_with_stdio(false); solve(); return 0; }