摘要: 题目大意:求最大的两个数的最大公约数。思路:数据范围较小,只有10^5,可以考虑哈希。解法1: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int N = 100001; 7 int hash_table... 阅读全文
posted @ 2015-04-18 23:46 hxy_has_been_used 阅读(224) 评论(0) 推荐(0) 编辑