collections.Counter()

  • + 0 comments
    from collections import Counter
    N=int(input())
    l=list(map(int,input().split()))
    n=int(input())
    counter=Counter(l)
    s=0
    for i in range(n):
        size,price=map(int,input().split())
        if counter[size]>0:
            s+=price
            counter[size]-=1
    print(s)