度度熊的午饭时光
度度熊的午饭时光
Accepts: 823
Time Limit: 2000/1000 MS (Java/Others)
Memory Limit: 32768/32768 K (Java/Others)
Case #1: 34 29 2 3 5 6 Case #2: 0 0
开始我是不会的,现在还是不怎么会,只好看题解了
其实是个01 背包加回溯,
#include <algorithm> #include <bitset> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <cctype> #include <fstream> #define INF 0x3f3f3f3f #define TEST cout<<"stop here"<<endl using namespace std; typedef long long ll; const ll mod = 1e9 + 7; struct meal{ int score,cost; }a[110]; bool ans[110]; int dp[1010]; bool vis[110][1010]; int main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); int T,kase=1; cin>> T; while(T--){ int b,n; cin>>b>>n; for(int i=1;i<=n;i++) cin>>a[i].score>>a[i].cost; memset(dp,0,sizeof(dp)); memset(vis,false,sizeof(vis)); memset(ans,0,sizeof(ans)); for(int i=1;i<=n;i++){ for(int j=b;j>=a[i].cost;j--){ if(dp[j] < dp[j-a[i].cost] + a[i].score){ dp[j] = dp[j-a[i].cost] + a[i].score; vis[i][j] = true; } else vis[i][j] = false; } } int p=b,cnt = 0; for(int i=n;i>=1;i--){ if(vis[i][p]){ ans[i]=true; p -= a[i].cost; cnt++; } } int ANS = 0; for(int i=1;i<=n;i++){ if(ans[i]) ANS += a[i].cost; } printf("Case #%d:\n",kase++); printf("%d %d\n",dp[b],ANS); for (int i = 1; i <= n; i++) if (ans[i]) printf("%d%c", i, (--cnt == 0) ? '\n' : ' '); } return 0; }

浙公网安备 33010602011771号