bzoj 2222 //2222: [Cqoi2006]猜数游戏 //在线测评地址https://www.lydsy.com/JudgeOnline/problem.php?id=2222
更多题解,详见https://blog.csdn.net/mrcrack/article/details/90228694BZOJ刷题记录
//搜索网络,该题没有作出说明的,也无正解.2019-7-27 10:29 搁置该题
//2222: [Cqoi2006]猜数游戏
//在线测评地址https://www.lydsy.com/JudgeOnline/problem.php?id=2222
//用二分模拟样例,看看是什么情况,因1<=n<=300,故left=0,right=300,输出right
//0 300 left=0,right=300
// W
//0 300 150 left=0,right=150
// W B
//0 300 150 75 left=0,right=75
// W B B
//0 300 150 75 37 left=37,right=75
// W B B W
//0 300 150 75 37 56 left=56,right=75
// W B B W B
//0 300 150 75 37 56 65 left=65,right=75
// W B B W B B
//0 300 150 75 37 56 65 70 left=70,right=75
// W B B W B B B
//0 300 150 75 37 56 65 70 72 left=72,right=75
// W B B W B B B B
//0 300 150 75 37 56 65 70 72 73 left=73,right=75
// W B B W B B B B B
//0 300 150 75 37 56 65 70 72 73 74 left=74,right=75 ans=right=75
// W B B W B B B B B B
//样例的10次,是指佳佳的回答次数,还是明明猜测的数的数量
//该题还是没有说明清楚.有命题的,还是缺做题的,总归问题没有描述清楚.2019-7-27 10:01
//搜索网络,该题没有作出说明的,也无正解.2019-7-27 10:29 搁置该题