# ナップザックの変形かと思ったが違うみたい # ABC116D Various Sushiのようにもできない # なんらかの貪欲法で並べることが必要 # 与えられたABリストを、初めてのグループであれば+X点として新リスト作成 # ソート、カウント累積和で高速化で総和計算 N, M, X = map(int, input().split()) AB = [] for i in range(N): a, b = map(int, input().split()) AB.append([a, b]) K = int(input()) C = list(map(int, input().split())) AB.sort(key = lambda x:x[0], reverse = True) #print(AB) genre = set() AB_adjusted = [] for a, b in AB: if b not in genre: genre.add(b) AB_adjusted.append(a+X) else: AB_adjusted.append(a) AB_adjusted.sort(reverse = True) count = [0]*(N+2) for c in C: count[1] += 1 count[c+1] -= 1 for i in range(1, N+2): count[i] += count[i-1] #print(AB_adjusted) #print(count) ans = 0 for i in range(N): ans += AB_adjusted[i]*count[i+1] print(ans)