2860:Block game with the Little Prince

题目描述

The Little Prince, who lives in the B-615 planet, sometimes enjoys a game to pile up blocks. He has N identical blocks and a box with K rooms for M blocks at most. That is, he can pile up M blocks, at most, into one of the K rooms, but can't more than M blocks. For example, if N = 3, K = 3, M = 2, there are seven ways to pile up all blocks:


Given two states of blocks, He wants to know how many times he should move blocks one by one, to change the initial state into the final state. For instance, he can choose one block from any of 3 rooms (A, B, C), and then move it into another room. Of course, he cannot put more than M blocks at the room.

输入解释

First line has three positives integers, N (1 ≤ N ≤ 30), M (1 ≤ M ≤ 4), and K (1 ≤ K ≤ 10). Each of next K lines contains the number of blocks piled at the room. This represents the initial state. Likely, another K lines are given, and this indicates the final state that the Little Prince want to make. Input is always valid.

输出解释

Output the minimal number of moves necessary to make the final state.

输入样例
3 2 3
1
1
1
2
0
1
输出样例
1

该题目是Virtual Judge题目,来自 北京大学POJ

源链接: POJ-2860

最后修改于 2020-10-29 06:46:08 UTC 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 65536

·

·

·

·

登陆或注册以提交代码