摘要: POJ 1328http://poj.org/problem?id=1328 1 #include <cstdio> 2 #include <cmath> 3 4 struct unit { 5 double h; 6 double t; 7 bool able; 8 }; 9 10 void work(int id,int m, int n);11 bool get_ht(int r,int x,int y,double *ph,double *pt);12 int main() {13 int m, n;14 int id=0;15 sca... 阅读全文
posted @ 2012-10-23 19:10 菜鸟程序员的奋斗& 阅读(544) 评论(0) 推荐(0) 编辑