結果

問題 No.2806 Cornflake Man
ユーザー tanaka255tanaka255
提出日時 2024-07-12 22:26:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 211,016 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-17 20:27:20
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
6,812 KB
testcase_01 AC 37 ms
6,944 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 34 ms
6,940 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 14 ms
6,940 KB
testcase_07 AC 42 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 21 ms
6,944 KB
testcase_10 AC 15 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 20 ms
6,944 KB
testcase_13 AC 38 ms
6,940 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 40 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
template<typename T>
bool chmax(T &a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}
template<typename T>
bool chmin(T &a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
void solve();
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  cout << fixed << setprecision(20);
  int t = 1;
  //cin >> t;
  while (t--) {
    solve();
  }
}
int N,M,A[2<<17];
void solve() {
  cin>>N>>M;
  rep(i,N)cin>>A[i];
  sort(A,A+N);
  priority_queue<pair<int,int>,vector<pair<int,int>>,greater<>>que;
  vector<int>B;
  for(int i=1;i<N;++i){
    if(que.empty()){
      B.emplace_back(A[i]);
      if(2*A[i]<=M)que.push({2*A[i],A[i]});
      continue;
    }
    if(que.top().first<A[i]){
      cout<<-1<<endl;
      return;
    }
    if(que.top().first==A[i]){
      while(!que.empty()&&que.top().first==A[i]){
        auto[a,b]=que.top();
        que.pop();
        a+=b;
        if(a<=M)que.push({a,b});
      }
      continue;
    }
    B.emplace_back(A[i]);
    if(2*A[i]<=M)que.push({2*A[i],A[i]});
  }
  if(!que.empty()){
    cout<<-1<<endl;
    return;
  }
  cout<<B.size()<<endl;
  rep(i,B.size())cout<<B[i]<<" \n"[i+1==(int)B.size()];
}
0