当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

1362:The Bermuda Triangle

题目描述
People in the hidden region of the Bermuda Triangle make everything they need in triangular shapes. One day, someone decided to break the rule and bake a hexagonally shaped cake. But as usual, he has to serve the cake in triangular pieces. The pieces are equilateral triangles but in different sizes for different people. He can use as many triangles as needed to cut the cake into pieces, such that nothing remains from the cake. For example, the following figure shows one way that a hexagon with side 9 can be cut into triangles with side 2 and 3. (The cake is cut along the thick lines, thin lines are drawn to show the sizes).



Input is a hexagon and triangle types (specified by the length of their sides) and the goal is to decide if the hexagon can be completely divided by the given triangle types.
输入解释
The first line of the input file contains a single integer t (1<=t <=10), the number of test cases, followed by the input data for each test case. Each test case consists of a single line, containing s (1<= s <=25), the length of the hexagon's side, followed by n, the number of triangle types (1 <=n <=10), followed by n integers representing the length of each triangle type's side (between 1 and 25, inclusive).
输出解释
There should be one output line per test case containing either YES or NO depending on whether the hexagon can be completely divided by the given triangle types.
输入样例
3
5 2 2 3
7 2 3 2
13 2 2 3
输出样例
NO
NO
YES
来自杭电HDUOJ的附加信息
Recommend JGShining

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-1362

最后修改于 2020-10-25T22:44:18+00:00 由爬虫自动更新

共提交 2

通过率 0.0%
时间上限 内存上限
20000/10000MS(Java/Others) 65536/32768K(Java/Others)