def maximum_value(test_list):
  res = [(key, max(lst)) for key, lst in test_list]
  return (res)