Taum and B'day】的更多相关文章

//自己 def main(): t = int(raw_input()) for _ in range(t): units = 0 b, w = map(int, raw_input().strip().split(' ')) x, y, z = map(int, raw_input().strip().split(' ')) if min(x, y) + z > max(x, y): if x > y: units = y * w + (y + z) * b else: units = x…
map结构 整体为一个数组,数组每个元素可以理解成一个槽,槽是一个链表结构,槽的每个节点可存8个元素,搞清楚了map的结构,想想对应的增删改查操作也不是那么难…