Thief in a Shop
生活随笔
收集整理的這篇文章主要介紹了
Thief in a Shop
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
https://codeforces.com/problemset/problem/632/E
題解:將所有元素減去最小元素
再進(jìn)行完全背包
如果體積超過k則不可以。
/* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #include<algorithm> #include<cstdlib> #include<cstring> #include<cstdio> #include<string> #include<vector> #include<bitset> #include<queue> #include<deque> #include<stack> #include<cmath> #include<list> #include<map> #include<set> //#define DEBUG #define RI register int using namespace std; typedef long long ll; //typedef __int128 lll; const int N=1000000+10; const int MOD=1e9+7; const double PI = acos(-1.0); const double EXP = 1E-8; const int INF = 0x3f3f3f3f; int t,n,m,k,q; int ans,cnt,flag,temp; int a[N]; int dp[N]; char str; int main() { #ifdef DEBUGfreopen("input.in", "r", stdin);//freopen("output.out", "w", stdout); #endifscanf("%d%d",&n,&m);for(int i=1;i<=n;i++){scanf("%d",&a[i]);}sort(a+1,a+n+1);int l=a[1];for(int i=1;i<=n;i++)a[i]-=l;int r=a[n]*m;for(int i=0;i<=r;i++)dp[i]=INF;dp[0]=0;for(int i=1;i<=n;i++){if(a[i]==0||a[i-1]==a[i])continue;for(int j=0;j+a[i]<=r;j++){dp[j+a[i]]=min(dp[j]+1,dp[j+a[i]]);}}for(int i=0;i<=r;i++)if(dp[i]<=m)printf("%d ",l*m+i);//cout << "Hello world!" << endl;return 0; }?
總結(jié)
以上是生活随笔為你收集整理的Thief in a Shop的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Seven Segment Displa
- 下一篇: 欧拉降幂(Euler_Power_For