zoukankan      html  css  js  c++  java
  • 作业

    #include <bits/stdc++.h>
    using namespace std;
    const int maxn = 2e5 + 100;
    int ans = 0;
    vector<pair<int, bool> >ret;
    
    void Search(int n, int val, int pos, int tot, vector<pair<int, bool>> &sto) {
        
        if(ans < val) {
            ans = val;
            ret = sto;
        }
    //    cout << val << endl;
    //    if(val == 3) {
    //        for(int i = 0; i < n; i++) {
    //            cout << i << "  " << sto[i].second << endl;
    //        }
    //    }
        if(tot <= 0)
            return ;
        
        int i;
    
        for(i = pos; i < n; i++){
            
            Search(n, val, i + 1, tot, sto);
            
            if(sto[i].first <= tot && !sto[i].second) {
            sto[i].second = 1;
            Search(n, val + 1, i + 1, tot - sto[i].first, sto);
            sto[i].second = 0;
            }
        }
    
        return ;
    }
    
    int main()
    {
        int n, i, tot_weight;
        pair<int, bool> tmp;
        printf("总件数为:");
        scanf("%d", &n);
    //    sto.reverse(n + 100);
    
        vector<pair<int, bool> >sto;
        
        for(i = 1; i <= n; i++) {
            printf("第%d件物品重量为:", i);
            scanf("%d", &tmp.first);
            tmp.second = 0;
            sto.push_back(tmp);
        }
        
    //    for(i = 0; i < n; i++) {
    //        printf("%d %d %d
    ", i, sto[i].first, sto[i].second);
    //    }
        printf("船能承受的最大重量为");
        scanf("%d", &tot_weight);
        Search(n, 0, 0, tot_weight, sto);
        
        printf("在保证效率最大的前提下,能装上船的货物为
    ");
        for(i = 0; i < n; i++) {
           if(!ret[i].second)
                continue;
            printf("第%d件物品
    ", i + 1);
        }
    
        return 0;
    }

  • 相关阅读:
    Construction构造函数
    映射验证
    映射设置
    条件映射
    映射前和映射后的操作
    AutoMapper 5.0-升级指南
    Bootstrap Tree View
    MiniProfiler使用笔记
    关于添加数据自定义编号格式问题
    【Postgresql】数据库函数
  • 原文地址:https://www.cnblogs.com/letlifestop/p/12011249.html
Copyright © 2011-2022 走看看