結果

問題 No.2806 Cornflake Man
ユーザー tnakao0123tnakao0123
提出日時 2024-07-15 16:07:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 69,120 KB
実行使用メモリ 13,740 KB
最終ジャッジ日時 2024-07-17 20:28:17
合計ジャッジ時間 2,180 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
8,112 KB
testcase_01 AC 56 ms
10,092 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 59 ms
10,376 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 13 ms
6,948 KB
testcase_06 AC 26 ms
6,944 KB
testcase_07 AC 70 ms
13,036 KB
testcase_08 AC 24 ms
6,940 KB
testcase_09 AC 35 ms
8,084 KB
testcase_10 AC 25 ms
6,940 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 31 ms
6,940 KB
testcase_13 AC 70 ms
9,076 KB
testcase_14 AC 13 ms
6,944 KB
testcase_15 AC 77 ms
13,740 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2806.cc:  No.2806 Cornflake Man - yukicoder
 */

#include<cstdio>
#include<unordered_map>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

using ll = long long;
using umii = unordered_map<int,int>;

/* global variables */

int as[MAX_N], bs[MAX_N];
bool used[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  sort(as + 1, as + n);
  umii aps;
  for (int i = 1; i < n; i++) aps[as[i]] = i;

  int k = 0;
  for (int i = 1; i < n; i++) {
    if (! used[i]) {
      used[i] = true;
      for (int ax = as[i] * 2; ax <= m; ax += as[i]) {
	if (! aps.count(ax)) { puts("-1"); return 0; }
	used[aps[ax]] = true;
      }
      bs[k++] = as[i];
    }
  }

  printf("%d\n", k);
  for (int j = 0; j < k; j++)
    printf("%d%c", bs[j], (j + 1 < k) ? ' ' : '\n');
  
  return 0;
}
0