new_dict = {}
for k, v in a.items():
new_dict.setdefault(v, []).append(k)
for k,v in new_dict.items():
res = {}
for lv in v:
res[lv] = k
print(res)