sicily 1068. Euro Efficiency
摘要:
//给出6枚不同面值(在1到100之间)的硬币,通过 加减 凑出1到100的钱数,我们关心的是最少要用到几枚硬币,//最后求出平均值,并找出其中最大值BFS#include<iostream> //BFS最短路搜索#include<stdio.h>#include<algorithm>#include<queue>#include<cstring>using namespace std;int euro[20],f[200],vis[200];int main(){ int cases; cin>>cases; while 阅读全文
posted @ 2011-07-11 18:16 sysu_mjc 阅读(228) 评论(0) 推荐(0) 编辑