N,P,K = map(int,input().split()) d1,d2 = {},{} d1[0] = P for i in range(N): T,B = map(int,input().split()) if len(d1): for ind,val in d1.items(): if ind not in d2: d2[ind] = val else: d2[ind] = max(d2[ind],val) if T == 1: nex = val+B if ind+1 <= K: if ind+1 not in d2: d2[ind+1] = nex else: d2[ind+1] = max(d2[ind+1],nex) else: nex = val*2 if ind+1 <= K: if ind+1 not in d2: d2[ind+1] = nex else: d2[ind+1] = max(d2[ind+1],nex) if K in d2: if d2[K] > 10**18: print(-1) exit() d1 = {} else: for ind,val in d2.items(): if ind not in d1: d1[ind] = val else: d1[ind] = max(d1[ind],val) if T == 1: nex = val+B if ind+1 <= K: if ind+1 not in d1: d1[ind+1] = nex else: d1[ind+1] = max(d1[ind+1],nex) else: nex = val*2 if ind+1 <= K: if ind+1 not in d1: d1[ind+1] = nex else: d1[ind+1] = max(d1[ind+1],nex) if K in d1: if d1[K] > 10**18: print(-1) exit() d2 = {} if len(d1): print(d1[K]) else: print(d2[K])