珠海邀请赛个人解题报告 Problem I: Hanoi Tower Once More

Problem I: Hanoi Tower Once More


Description
    You know  the game of Hanoi Tower,  right? People stopped moving discs  from peg to peg after they know the number of steps needed to complete the entire task.
    But on the other hand, they didn't not stopped thinking about similar puzzles with the Hanoi Tower. Mr. S invented a little game on it. The game consists of N pegs and a LOT of balls. Each ball has a different number. The balls look ordinary, but they are actually magic. If the sum of the numbers on two balls is NOT a square number, they will push each other with a great force when they're too closed, so they can NEVER be put together touching each other.
The player should place one ball on the top of a peg at a time. And we must start from the smallest number all the way to the largest .So no ball with a smaller number should be above a ball with a larger number.
    Here comes our question: Given  the number on each ball, how many pegs, at least, are needed to make all the balls placed?


Input
The input consists of T test cases. The number of test cases T is given in the first  line of the input. Each test case starts with a line containing one integers n (n≤300), which is the amount of balls. In the next line, n different positive integers, the number on each ball, is given.


Output
Print the minimum pegs needed to make all the balls placed.


Sample Input
2
4
1 2 3 4
4
1 3 6 10

 

Sample Output
3
1

 

最小路径覆盖的模板题,“黑书”中有原题,并且给出了结论: 所求的路径数 = 顶点数- 最大匹配

下面算法就没什么好说的了,用了KM算法,这里是O((N+1)^3)的复杂度

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值