G. Back and Forth(dfs)

农场主约翰有两个挤奶棚,每个都有一个大的牛奶罐和一个装有101个不同大小水桶的储藏室。他喜欢在两个棚间搬运牛奶作为锻炼。最初每个棚里有1000加仑牛奶。周二到周五,他用桶从一个棚装满牛奶带到另一个棚,然后留下桶。询问周五结束后,第一个棚里可能有多少种不同的牛奶量。
摘要由CSDN通过智能技术生成

http://codeforces.com/group/NVaJtLaLjS/contest/238203/problem/G
G. Back and Forth
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Farmer John has two milking barns, each of which has a large milk tank as well as a storage closet containing 1010 buckets of various sizes. He likes to carry milk back and forth between the two barns as a means of exercise. On Monday, Farmer John measures exactly 10001000 gallons of milk in the tank of the first barn, and exactly 10001000 gallons of milk in the tank of the second barn.

On Tuesday, he takes a bucket from the first barn, fills it, and carries the milk to the second barn, where he pours it into the storage tank. He leaves the bucket at the second barn.

On Wednesday, he takes a bucket from the second barn (possibly the one he left on Tuesday), fills it, and carries the milk to the first barn, where he pours it into the storage tank. He leaves the bucket at the first barn.

On Thursday, he takes a bucket from the first barn (possibly the one he left on Wednesday), fills it, and carries the milk to the second barn, where he pours it into the tank. He leaves the bucket at the second barn.

On Friday, he takes a bucket from the second barn (possibly the one he left on Tuesday or Thursday), fills it, and carries the milk to the first barn, where he pours it into the tank. He leaves the bucket at the first barn.

Farmer John then measures the milk in the tank of the first barn. How many possible different readings could he see?

Input
The first line of input contains 1010 integers, giving the sizes of the buckets initially at the first barn. The second line of input contains 1010 more integers, giving the sizes of the buckets initially at the second barn. All bucket sizes are in the range 1…1001…100.

Output
Please print the number of possible readings Farmer John could get from measuring the milk in the tank of the first barn after Friday.

Example
inputCopy
1 1 1 1 1 1 1 1 1 2
5 5 5 5 5 5 5 5 5 5
outputCopy
5
Note
In this example, there are 5 possible results for the final amount of milk in the first barn's tank:

1000: FJ could carry the same bucket back and forth in each trip, leaving the total amount in the first barn's tank unchanged.
1003: FJ could carry 2 units on Tuesday, then 5 units on Wednesday, then 1 unit on Thursday, and 1 unit on Friday.
1004: FJ could carry 1 unit on Tuesday, then 5 units on Wednesday, then 1 unit on Thursday, and 1 unit on Friday.
1007: FJ could carry 1 unit on Tuesday, then 5 units on Wednesday, then 2 units on Thursday, and 5 units on Friday.
1008: FJ could carry 1 unit on Tuesday, then 5 units on Wednesday, then 1 unit on Thursday, and 5 units on Friday.
题目大意:
左右两边有一个缸有1000L的水,开始时左右各有10个桶,容量给出,从缸中取满水,送去对面。再把桶留下。
来回两次后,求左边缸中水有多少种读数。
题目分析:
给每个桶做标记 表示是左边的还是右边的,从第一个桶开始dfs 搜到底后标记一下,在遍历出答案。
代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=100005;
int a[25],b[25];int vis[N];
void dfs(int t,int ta,int tb)
{
	if(t==5){
		vis[ta]=1;
		return;
	}
	if(t%2==1)
	{
		for(int i=1;i<=20;i++)
		{
			if(b[i]==1)
			{
				b[i]=2;
				dfs(t+1,ta-a[i],tb+a[i]);
				b[i]=1;
			}
		}
	}
	else
	{
		for(int i=1;i<=20;i++)
		{
			if(b[i]==2)
			{
				b[i]=1;
				dfs(t+1,ta+a[i],tb+a[i]);
				b[i]=2;
			}
		}
	}
}
int main()
{
	for(int i=1;i<=10;i++)
	{
		cin>>a[i];
		b[i]=1;
	}
	for(int i=11;i<=20;i++)
	{
		cin>>a[i];
		b[i]=2;
	}
	dfs(1,1000,1000);
	int ans=0;
	for(int i=1;i<=3000;i++)
	{
		if(vis[i])ans++;
	}
	cout<<ans;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值