Radical


私信TA

用户名:dotcpp0602299

访问量:689

签 名:

等  级
排  名 3624
经  验 1860
参赛次数 0
文章发表 10
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

#include <bits/stdc++.h>

using namespace std;
int n, m;
vector<long> suf;//可能会卡总重量的数据类型
vector<int> a;
int ans = 100;
void dfs(int pos, long cnt, int step)
{
    if (cnt == m)
    {
        ans = min(ans, step);
        return;
    }
    if (cnt >= m || step >= ans || pos >= n || cnt + suf[pos] < m)
    {
        return;
    }
    dfs(pos + 1, cnt + a[pos], step);
    dfs(pos + 1, cnt + a[pos] / 2, step + 1);
    dfs(pos + 1, cnt, step);
}

int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    cin >> n >> m;
    a.resize(n+5);
    suf.resize(n+5);
    m *= 2;
    for (int i = 0; i < n; i++)
    {
        cin >> a[i];
        a[i] *= 2;
    }
    sort(a.begin(), a.end(), greater<int>());
    for (int i = n - 1; i >= 0; i--)
    {
        suf[i] = suf[i + 1] + a[i];
    }
    dfs(0,0,0);
    if (ans == 100)
    {
        cout << -1;
    }
    else
    {
        cout << ans;
    }
    return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »