POJ 3278 Catch That Cow(bfs)
摘要:
题意:给定n,k两个数,三种操作,加一,减一,乘2,求n到k的最少步数;思路:广搜求最少步数;#include#include#includeusing namespace std;int n,m;int q[500010];int num[500010];int bfs(){ int b=0... 阅读全文
posted @ 2015-04-17 22:37 大树置林 阅读(123) 评论(0) 推荐(0) 编辑