結果
問題 | No.14 最小公倍数ソート |
ユーザー | raven7959 |
提出日時 | 2022-08-20 10:26:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,137 ms / 5,000 ms |
コード長 | 4,996 bytes |
コンパイル時間 | 3,189 ms |
コンパイル使用メモリ | 227,240 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-10-09 03:18:10 |
合計ジャッジ時間 | 24,307 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 | 15 ms
5,248 KB |
testcase_04 | AC | 1,957 ms
9,088 KB |
testcase_05 | AC | 559 ms
6,784 KB |
testcase_06 | AC | 649 ms
7,040 KB |
testcase_07 | AC | 879 ms
7,680 KB |
testcase_08 | AC | 1,212 ms
8,192 KB |
testcase_09 | AC | 1,722 ms
8,704 KB |
testcase_10 | AC | 1,662 ms
8,704 KB |
testcase_11 | AC | 1,771 ms
8,960 KB |
testcase_12 | AC | 1,807 ms
8,960 KB |
testcase_13 | AC | 2,137 ms
8,960 KB |
testcase_14 | AC | 1,808 ms
8,832 KB |
testcase_15 | AC | 1,885 ms
8,960 KB |
testcase_16 | AC | 564 ms
7,040 KB |
testcase_17 | AC | 382 ms
6,400 KB |
testcase_18 | AC | 160 ms
5,504 KB |
testcase_19 | AC | 1,058 ms
7,936 KB |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,fma,abm,mmx,avx,avx2") #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rrep(i, n) for (int i = (int)(n - 1); i >= 0; i--) #define all(x) (x).begin(), (x).end() #define sz(x) int(x.size()) #define yn(joken) cout<<((joken) ? "Yes" : "No")<<"\n" #define YN(joken) cout<<((joken) ? "YES" : "NO")<<"\n" using namespace std; using ll = long long; using vi = vector<int>; using vl = vector<ll>; using vs = vector<string>; using vc = vector<char>; using vd = vector<double>; using vld = vector<long double>; using vvi = vector<vector<int>>; using vvl = vector<vector<ll>>; using vvs = vector<vector<string>>; using vvc = vector<vector<char>>; using vvd = vector<vector<double>>; using vvld = vector<vector<long double>>; using vvvi = vector<vector<vector<int>>>; using vvvl = vector<vector<vector<ll>>>; using vvvvi = vector<vector<vector<vector<int>>>>; using vvvvl = vector<vector<vector<vector<ll>>>>; using pii = pair<int,int>; using pll = pair<ll,ll>; const int INF = 1e9; const ll LINF = 2e18; template <class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } bool ispow2(int i) { return i && (i & -i) == i; } bool ispow2(ll i) { return i && (i & -i) == i; } template <class T> vector<T> make_vec(size_t a) { return vector<T>(a); } template <class T, class... Ts> auto make_vec(size_t a, Ts... ts) { return vector<decltype(make_vec<T>(ts...))>(a, make_vec<T>(ts...)); } template <typename T> istream& operator>>(istream& is, vector<T>& v) { for (int i = 0; i < int(v.size()); i++) { is >> v[i]; } return is; } template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { for (int i = 0; i < int(v.size()); i++) { os << v[i]; if (i < int(v.size()) - 1) os << ' '; } return os; } static uint32_t RandXor(){ static uint32_t x=123456789; static uint32_t y=362436069; static uint32_t z=521288629; static uint32_t w=88675123; uint32_t t; t=x^(x<<11); x=y; y=z; z=w; return w=(w^(w>>19))^(t^(t>>8)); } static double Rand01(){ return (RandXor()+0.5)*(1.0/UINT_MAX); } // sieve SE(N): 1からNまでのmin_factor tableを作成 // vector<pii> factorize(int n): nを素因数分解した結果を(p,e)のvectorで返す // vi divisors(int n): nの正の約数を返す, 約数の個数をdとしてO(d) // int number_of_divisors(int n): nの正の約数の個数を返す, まあ一応書いただけ struct sieve{ vector<bool> is_prime; vector<int> min_factor,primes; sieve(int N): is_prime(N+1,true),min_factor(N+1,-1){ is_prime[1]=false; min_factor[1]=1; for(int i=2;i<=N;i++){ if(!is_prime[i]) continue; primes.push_back(i); min_factor[i]=i; for(int j=i;j<=N;j+=i){ if(j!=i) is_prime[j]=false; if(min_factor[j]==-1) min_factor[j]=i; } } } vector<pair<int,int>> factorize(int n){ vector<pair<int,int>> ret; while(n>1){ int p=min_factor[n]; int e=0; while(n%p==0){ e++; n/=p; } ret.emplace_back(p,e); } return ret; } vector<int> divisors(int n){ vector<int> ret={1}; for(auto [p,e]:factorize(n)){ int cnt=int(ret.size()); for(int i=0;i<cnt*e;i++) ret.emplace_back(ret[i]*p); } sort(ret.begin(),ret.end()); return ret; } int number_of_divisors(int n){ int ret=1; for(auto [p,e]:factorize(n)){ ret*=e+1; } return ret; } }; void solve(){ int N; cin>>N; vi A(N); cin>>A; sieve SE(10001); vvi D(N); rep(i,N) D[i]=SE.divisors(A[i]); vector<set<pii>> st(10001); rep(i,N-1){ for(auto d:D[i+1]){ st[d].emplace(A[i+1],i+1); } } vi ANS(N); ANS[0]=A[0]; int pre=0; rep(i,N-1){ int MA=-1,MD=INF; for(auto d:D[pre]){ for(auto [a,n]:st[d]){ if(MA==-1){ MA=n; MD=d; } else{ if(a*MD<d*A[MA]){ MA=n; MD=d; } else if(a*MD==d*A[MA]){ if(a<A[MA]) MA=n; } } } } pre=MA; ANS[i+1]=A[MA]; for(auto d:D[MA]){ st[d].erase(make_pair(A[MA],MA)); } } cout<<ANS<<endl; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); solve(); }