結果

問題 No.2806 Cornflake Man
ユーザー InTheBloomInTheBloom
提出日時 2024-07-12 22:42:26
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,570 ms / 2,000 ms
コード長 1,328 bytes
コンパイル時間 1,385 ms
コンパイル使用メモリ 117,580 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-08-01 03:43:13
合計ジャッジ時間 10,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,570 ms
72,288 KB
testcase_01 AC 206 ms
18,816 KB
testcase_02 AC 314 ms
26,496 KB
testcase_03 AC 212 ms
19,584 KB
testcase_04 AC 180 ms
17,536 KB
testcase_05 AC 37 ms
7,168 KB
testcase_06 AC 1,166 ms
73,984 KB
testcase_07 AC 266 ms
22,016 KB
testcase_08 AC 704 ms
42,496 KB
testcase_09 AC 123 ms
13,396 KB
testcase_10 AC 60 ms
8,320 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 76 ms
9,472 KB
testcase_13 AC 158 ms
16,052 KB
testcase_14 AC 30 ms
6,940 KB
testcase_15 AC 264 ms
23,548 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>

using namespace std;
using ll = long long;

constexpr int iINF = 1'000'000'000;
constexpr ll llINF = 1'000'000'000'000'000'000;

int main () {
    int N, M; cin >> N >> M;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];

    // A[i]として表れてしまった数はその倍数までは責任を持たないとダメ。
    // 小さいA[i]から見ていき、上限まで倍数がちゃんと入っているかチェックして、全部クリアすればそいつは必須。(小さいA[i]から見ているので、それ自身を生成する数が必要)

    vector<int> B;
    sort(A.begin(), A.end());
    map<int, bool> mp;
    for (auto a : A) mp[a] = true;
    bool ok = true;
    map<int, bool> seen;

    for (int i = 0; i < N; i++) {
        int a = A[i];
        if (a == 0) continue;
        if (seen[a]) continue;
        int cur = a;
        while (cur <= M) {
            if (mp.find(cur) == mp.end()) ok = false;
            seen[cur] = true;
            cur += a;
        }
        B.push_back(a);
    }

    if (!ok) {
        cout << -1 << "\n";
        return 0;
    }

    cout << B.size() << "\n";
    for (int i = 0; i < B.size(); i++) {
        cout << B[i] << (i == B.size() - 1 ? '\n' : ' ');
    }
}
0