結果

問題 No.14 最小公倍数ソート
ユーザー koba-e964koba-e964
提出日時 2015-05-03 17:17:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,763 ms / 5,000 ms
コード長 1,202 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 85,840 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 17:42:47
合計ジャッジ時間 52,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 50 ms
5,376 KB
testcase_04 AC 4,763 ms
5,376 KB
testcase_05 AC 1,579 ms
5,376 KB
testcase_06 AC 1,866 ms
5,376 KB
testcase_07 AC 2,429 ms
5,376 KB
testcase_08 AC 3,185 ms
5,376 KB
testcase_09 AC 4,403 ms
5,376 KB
testcase_10 AC 4,238 ms
5,376 KB
testcase_11 AC 4,404 ms
5,376 KB
testcase_12 AC 4,525 ms
5,376 KB
testcase_13 AC 4,589 ms
5,376 KB
testcase_14 AC 4,462 ms
5,376 KB
testcase_15 AC 4,589 ms
5,376 KB
testcase_16 AC 1,715 ms
5,376 KB
testcase_17 AC 1,219 ms
5,376 KB
testcase_18 AC 536 ms
5,376 KB
testcase_19 AC 2,893 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef pair<int, int> PI;
const double EPS=1e-9;

int n;
const int N = 10010;

int a[N];

int b[N];
int u[N];

int lcm(int x, int y) {
  return x / __gcd(x, y) * y;
}

int main(void){
  cin >> n;
  REP(i, 0, n) {
    cin >> a[i];
    u[i] = 0;
  }
  int s = 0;
  REP(i, 0, n) {
    b[i] = a[s];
    u[s] = 1;
    int mini = -1;
    int minl = 0;
    REP(k, 0, n) {
      if (u[k]) {
        continue;
      }
      int l = lcm(a[s], a[k]);
      if (mini == -1 || minl > l ||
          (minl == l && a[mini] > a[k])) {
        mini = k;
        minl = l;
      }
    }
    s = mini;
  }
  REP(i, 0, n) {
    cout << b[i] << (i == n - 1 ? "\n" : " ");
  }
}
0