codeforces G. Back and Forth(暴力)

G. Back and Forth

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

Farmer John has two milking barns, each of which has a large milk tank as well as a storage closet containing 10 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 1000 gallons of milk in the tank of the first barn, and exactly 1000 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 10 integers, giving the sizes of the buckets initially at the first barn. The second line of input contains 10 more integers, giving the sizes of the buckets initially at the second barn. All bucket sizes are in the range 1…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

intput
1 1 1 1 1 1 1 1 1 2
5 5 5 5 5 5 5 5 5 5
output
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.

分析

暴力枚举;
两个仓库各有10个桶与1000升牛奶,桶给出容量;然后FJ会在两个仓库间左右横跳4次;每次都会选一个桶并把仓库里面的牛奶装一桶倒过去另一个仓库并把桶放下;两个仓库轮流执行这个操作,由第一个仓库开始。
问最后有多少种不同的情况;
全部情况枚举出来也就1e4~1e5的大小,只需要开个数组下标记录一下最终结果最后再扫一遍就是结果了。

代码

#include<cstdio>
#include<cstring>
#include<queue>
#include<vector>
#include<algorithm>
#define MS(X) memset(X,0,sizeof(X))
#define MSC(X) memset(X,-1,sizeof(X))
typedef long long LL;
using namespace std;
int mark[1250],t1[12],t2[12];
int tank=1000,tp1=9,tp2=9;
void dfs(int chk,int tk){
    if(chk==0) {
        mark[tk]=1;
        return;}
    if(chk==4||chk==2){
        for(int i=0;i<12;i++){
            if(t1[i]!=-1){
                int save=t1[i];
                t1[i]=-1;
                t2[++tp2]=save;
                dfs(chk-1,tk+save);
                t1[i]=save;
                t2[tp2--]=-1;
            }
        }
    }else if(chk==3||chk==1){
        for(int i=0;i<12;i++){
            if(t2[i]!=-1){
                int save=t2[i];
                t2[i]=-1;
                t1[++tp1]=save;
                dfs(chk-1,tk-save);
                t2[i]=save;
                t1[tp1--]=-1;
            }
        }
    }
}
int main(){
    int ans=0;
    MS(mark);MSC(t1);MSC(t2);
    for(int i=0;i<10;i++)
        scanf("%d",&t1[i]);
    for(int i=0;i<10;i++)
        scanf("%d",&t2[i]);
    dfs(4,1000);
    for(int i=800;i<1200;i++)
        if(mark[i]!=0) ans++;
    printf("%d\n",ans);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值