結果

問題 No.2806 Cornflake Man
ユーザー elpheelphe
提出日時 2024-07-16 18:26:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 91,084 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-07-17 20:28:20
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
8,704 KB
testcase_01 AC 97 ms
11,264 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 107 ms
11,776 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 19 ms
6,944 KB
testcase_06 AC 30 ms
6,944 KB
testcase_07 AC 128 ms
13,056 KB
testcase_08 AC 27 ms
6,940 KB
testcase_09 AC 62 ms
8,448 KB
testcase_10 AC 30 ms
6,944 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 37 ms
6,944 KB
testcase_13 AC 80 ms
9,728 KB
testcase_14 AC 14 ms
6,940 KB
testcase_15 AC 97 ms
13,440 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <algorithm>

using namespace std;

int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N, M, i, cur;
    cin >> N >> M;
    set<int> rest;
    vector<int> A(N), B;
    for (i = 0; i != N; ++i)
        cin >> A[i];

    sort(A.begin(), A.end());
    for (i = 1; i != N; ++i)
        rest.insert(A[i]);

    while (!rest.empty())
    {
        cur = *rest.begin(), rest.erase(rest.begin());
        for (i = 2; cur * i <= M; ++i)
        {
            if (!binary_search(A.begin(), A.end(), cur * i))
            {
                cout << "-1\n";
                return 0;
            }

            set<int>::iterator temp;
            if ((temp = rest.find(cur * i)) != rest.end())
                rest.erase(temp);
        }
        B.push_back(cur);
    }

    cout << B.size() << '\n' << B[0];
    for (i = 1; i != B.size(); ++i) cout << ' ' << B[i];
    cout << '\n';
    return 0;
}
0