摘要: 动态规划题,麻烦在要输出一个最优解 代码如下: #include #include #include struct tmice{ int weight; int speed; int id; }mice[1001]; int f[1001],r[1001],b[1001]; int compare( const void * a, const void *b) { ... 阅读全文
posted @ 2008-10-30 09:00 pandy 阅读(435) 评论(1) 推荐(0) 编辑