火柴棍能組成的最大數字

火柴棍能組成的最大數字

2020春招百度筆試題

題目:

輸入火柴棍根數n,能選取的數字個數m,以及能選取的數字列表
輸入案例(原題案例我忘了,瞎寫的)
20 4
5 6 7 8
輸出能組成的最大整數值

題解:使用動態規劃,代碼github鏈接 ,如有錯誤還望指出,新手上路,請多關照

#include <cstdio>
#include <cmath>
#include <vector>

using namespace std;
int number[10] = { 0,1,2,3,4,5,6,7,8,9 };
int expend[10] = { 0,2,5,5,4,5,6,3,7,6 };
int main() {
	int n, m;
	scanf("%d", &n);
	scanf("%d", &m);
	vector<bool> canuse(10, false);
	vector<int> dp(n+1,0);
	for (int i = 0; i<m; i++) {
		int temp;
		scanf("%d", &temp);
		canuse[temp] = true;
	}
	dp[0]=0;
	for(int i=1;i<=n;i++){
		int choice=0;
		int maxvalue=0;
		for(int j=1;j<=9;j++){
			if(canuse[j]) {
				if(i-expend[j]<0) continue;
				if(dp[i-expend[j]]==-1) continue;
				if(dp[i-expend[j]]>=maxvalue){
					choice=j;
					maxvalue=dp[i-expend[j]];
				}
			}
		}
		if(choice==0) dp[i]=-1;
		else{
			dp[i]=maxvalue*10+choice;
		}
		//printf("%d\n",dp[i]);
	}
	printf("%d",dp[n]);
	return 0;
}

2020年3月14日

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章