結果

問題 No.14 最小公倍数ソート
ユーザー どららどらら
提出日時 2015-06-02 21:43:18
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,545 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 88,432 KB
実行使用メモリ 10,524 KB
最終ジャッジ日時 2024-07-06 13:47:32
合計ジャッジ時間 8,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 66 ms
6,944 KB
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <iostream>
#include <queue>
#include <list>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
#define MAX_PRIME 100000 
bool isprime[MAX_PRIME+1]; 
vector<int> primes; 
void init_prime(){
  fill(isprime, isprime+MAX_PRIME+1, true); 
  isprime[0] = isprime[1] = false; 
  for(int i = 2; i <= MAX_PRIME; i++) { 
    if (isprime[i]) { 
      primes.push_back(i); 
      for(int j = i*2; j <= MAX_PRIME; j += i) 
      isprime[j] = false; 
    } 
  } 
}

int gcd(int a, int b){return (b==0?a:gcd(b,a%b));}
int lcm(int a, int b){return a/gcd(a,b)*b;}

struct ST {
  int a, b;
};
bool operator<(const ST& a, const ST& b){
  if(a.b==b.b) return a.a<b.a;
  return a.b<b.b;
}

int main(){
  ios::sync_with_stdio(false);
  init_prime();
  
  int N, a;
  vector<ST> A;
  cin >> N;
  rep(i,N){
    cin >> a;
    A.push_back((ST){a,a});
  }

  rep(i,N){
    REP(j,i+1,N){
      if(isprime[A[i].a] && isprime[A[j].a]){
        A[j].b = A[i].a * A[j].a;
      }else{
        A[j].b = lcm(A[i].a, A[j].a);
      }
    }
    sort(A.begin()+i+1,A.end());
  }
  
  rep(i,A.size()){
    if(i!=0) cout << " ";
    cout << A[i].a;
  }
  cout << endl;
  
  return 0;
}
0