摘要: 2014-06-0300:03:22题意&思路:计算距离&检索,不多说。#include #include #include using namespace std;const int maxn = 5000;const double INF = 1000000;const double eps =... 阅读全文
posted @ 2014-06-03 00:05 Naturain 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 2014-06-0300:01:44题意&思路:随便敲个排序上去即可,这里手敲复习了一下快排。#include #include #include #include #include using namespace std;const int maxn = 10000;void quick_sort... 阅读全文
posted @ 2014-06-03 00:03 Naturain 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 2014-06-0300:00:35题意&思路:简单题。#include #include #include #include using namespace std;struct Country{ char name[80];};Country cou[2005];bool cmp(Coun... 阅读全文
posted @ 2014-06-03 00:01 Naturain 阅读(111) 评论(0) 推荐(0) 编辑