摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1263题目大意:对同一地方的同一水果进行归类。解题思路: map真心强大,以前只知道map的一维运用,今天了解了map的二维运用(map映射map)。View Code 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <map> 5 #include <algorithm> 6 using namespace std; 7 8 int mai 阅读全文
posted @ 2013-04-17 17:46 Mr. Ant 阅读(1526) 评论(1) 推荐(0) 编辑