結果

問題 No.2806 Cornflake Man
ユーザー anonymouslyanonymously
提出日時 2024-07-12 22:48:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 733 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 209,436 KB
実行使用メモリ 11,808 KB
最終ジャッジ日時 2024-07-12 22:48:40
合計ジャッジ時間 8,560 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
11,680 KB
testcase_01 AC 68 ms
6,944 KB
testcase_02 AC 14 ms
6,944 KB
testcase_03 AC 70 ms
6,940 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 16 ms
6,944 KB
testcase_06 AC 32 ms
6,940 KB
testcase_07 AC 86 ms
6,944 KB
testcase_08 AC 30 ms
6,940 KB
testcase_09 AC 44 ms
6,940 KB
testcase_10 AC 790 ms
6,940 KB
testcase_11 AC 20 ms
6,940 KB
testcase_12 AC 1,095 ms
6,940 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n;
	long long m;
	cin >> n >> m;
	vector<long long> A(n);
	for (int i = 0; i < n; i++)
		cin >> A[i];
	sort(A.begin(), A.end());
	vector<bool> B(n, false);
	B[0] = true;
	vector<long long> C;
	for (int i = 1; i < n; i++) {
		if (A[i] * (n - 1) < m) {
			cout << -1 << endl;
			return 0;
		}
		if (!B[i]) {
			long long k = A[i] * 2;
			for (int j = i + 1; j < n; j++) {
				if (A[j] > k) {
					cout << -1 << endl;
					return 0;
				}
				if (A[j] == k) {
					B[j] = true;
					k += A[i];
				}
			}
			C.push_back(A[i]);
		}
	}
	cout << C.size() << endl;
	for (int i = 0; i < C.size(); i++) {
		if (i)
			cout << ' ';
		cout << C[i];
	}
	cout << endl;
	return 0;
}
0