結果
問題 | No.2806 Cornflake Man |
ユーザー | Today03 |
提出日時 | 2024-07-12 22:03:24 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 330 ms / 2,000 ms |
コード長 | 1,049 bytes |
コンパイル時間 | 2,245 ms |
コンパイル使用メモリ | 212,796 KB |
実行使用メモリ | 32,896 KB |
最終ジャッジ日時 | 2024-07-17 20:26:59 |
合計ジャッジ時間 | 5,006 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; int main() { ll N, M; cin >> N >> M; vector<ll> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } if (N > M + 1) { cout << -1 << endl; return 0; } else if (N == M + 1) { cout << 1 << endl << 1 << endl; return 0; } sort(A.begin(), A.end()); set<ll> ext(A.begin(), A.end()); set<ll> ans, seen; for (int i = 1; i < N; i++) { if (M / A[i] + 1 > N) { cout << -1 << endl; return 0; } if (!seen.count(A[i])) { ans.insert(A[i]); for (ll x = A[i]; x <= M; x += A[i]) { if (!ext.count(x)) { cout << -1 << endl; return 0; } seen.insert(x); } } } cout << ans.size() << endl; for (int x : ans) { cout << x << ' '; } cout << endl; }