#include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n=5; vector v(n); vector cost(n); for(int i=0;i> v[i] >> cost[i]; } vector res(n); vector> sr(3); for(int i=0;i<3;i++){ int m; cin >> m; while(m--){ string s; cin >> s; sr[i].push_back(s); } } for(int i=0;i