I. A Constant Struggle

UCF Local Programming Contest 2014(Practice)

Your math teacher Xavier Guha has given your class an extra credit assignment to work on. The problem he gives is as follows: Given a linear equation of the form

c 1 x 1 + c 2 x 2 + c 3 x 3 + c 4 x 4 + c 5 x 5 + c 5 x 5 + c 6 x 6 + c 7 x 7 + c 8 x 8 = N c_1x_1 + c_2x_2 + c_3x_3 + c_4x_4 + c_5x_5 + c_5x_5 + c_6x_6 + c_7x_7 + c_8x_8 = N c1x1+c2x2+c3x3+c4x4+c5x5+c5x5+c6x6+c7x7+c8x8=N

Having taken several programming classes from his brother, you decide to prove your teacher wrong by writing a program to determine how many solutions the equation has.
题意:给出c1……c8 和 N 求有多少种非负整数解。

我们可以考虑记忆化搜索:
Code1:

#include<bits/stdc++.h>

using namespace std;
typedef long long LL;

int n;
int a[9];
LL dp[10][110];

LL dfs(int x,int sum)
{
	if(sum==n) return 1;
	if(x>8||sum>n) return 0;
	if(dp[x][sum]>=0) return dp[x][sum];
	return dp[x][sum] = dfs(x+1,sum)+dfs(x,sum+a[x]);  //不选第x个和选第x个
}

int main()
{
	int T;
	cin>>T;
	for(int i=1;i<=T;i++){
		for(int j=1;j<=8;j++) cin>>a[j];
		cin>>n;
		memset(dp,-1,sizeof dp);
		dfs(1,0);
		cout<<"Equation #"<<i<<": "<<dp[1][0]<<"\n";
	}
	return 0;
}

完全背包:
Code2:

#include<bits/stdc++.h>

using namespace std;
typedef long long LL;

LL dp[10][110];		//前i个数,装满大小为j的背包的种类数;
int a[10];

int main()
{
	int T,m,K=1;
	cin>>T;
	while(T--){
		for(int i=1;i<=8;i++) cin>>a[i];
		memset(dp,0,sizeof dp);
		for(int i=0;i<=8;i++) dp[i][0] = 1;
		cin>>m;
		for(int i=1;i<=8;i++){
			for(int j=1;j<=m;j++)
				for(int k=0;k*a[i]<=j;k++)
				dp[i][j] += dp[i-1][j-k*a[i]];
		}
		cout<<"Equation #"<<K<<": "<<dp[8][m]<<"\n";K++;
	}
	return 0;
}

既然是完全背包那我们就可以优化一波
Code3:

#include<bits/stdc++.h>

using namespace std;
typedef long long LL;

LL dp[110];
int a[10];

int main()
{
	int T,m,K=1;
	cin>>T;
	while(T--){
		for(int i=1;i<=8;i++) cin>>a[i];
		memset(dp,0,sizeof dp);
		dp[0] = 1;
		cin>>m;
		for(int i=1;i<=8;i++){
			for(int j=a[i];j<=m;j++)
				dp[j] += dp[j-a[i]];
		}
		cout<<"Equation #"<<K<<": "<<dp[m]<<"\n";K++;
	}
	return 0;
}
Based on the following story, continue the story by writing two paragraphs, paragraph 1 beginning with "A few weeks later, I went to the farm again. " and paragraph 2 beginning with "I was just about to leave when the hummingbird appeared."respectively with 150 words. I was invited to a cookout on an old friend's farm in western Washington. I parked my car outside the farm and walked past a milking house which had apparently not been used in many years.A noise at a window caught my attention,so I entered it. It was a hummingbird,desperately trying to escape. She was covered in spider-webs and was barely able to move her wings. She ceased her struggle the instant I picked her up. With the bird in my cupped hand, I looked around to see how she had gotten in. The broken window glass was the likely answer. I stuffed a piece of cloth into the hole and took her outside,closing the door securely behind me. When I opened my hand, the bird did not fly away; she sat looking at me with her bright eyes.I removed the sticky spider-webs that covered her head and wings. Still, she made no attempt to fly.Perhaps she had been struggling against the window too long and was too tired? Or too thirsty? As I carried her up the blackberry-lined path toward my car where I kept a water bottle, she began to move. I stopped, and she soon took wing but did not immediately fly away. Hovering,she approached within six inches of my face. For a very long moment,this tiny creature looked into my eyes, turning her head from side to side. Then she flew quickly out of sight. During the cookout, I told my hosts about the hummingbird incident. They promised to fix the window. As I was departing, my friends walked me to my car. I was standing by the car when a hummingbird flew to the center of our group and began hovering. She turned from person to person until she came to me. She again looked directly into my eyes, then let out a squeaking call and was gone. For a moment, all were speechless. Then someone said, “She must have come to say good-bye.”
最新发布
02-12
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值