Cunning Gena

A boy named Gena really wants to get to the “Russian Code Cup” finals, or at least get a t-shirt. But the offered problems are too complex, so he made an arrangement with his n friends that they will solve the problems for him.

The participants are offered m problems on the contest. For each friend, Gena knows what problems he can solve. But Gena’s friends won’t agree to help Gena for nothing: the i-th friend asks Gena x i rubles for his help in solving all the problems he can. Also, the friend agreed to write a code for Gena only if Gena’s computer is connected to at least k i monitors, each monitor costs b rubles.

Gena is careful with money, so he wants to spend as little money as possible to solve all the problems. Help Gena, tell him how to spend the smallest possible amount of money. Initially, there’s no monitors connected to Gena’s computer.

Input

The first line contains three integers nm and b (1 ≤ n ≤ 100; 1 ≤ m ≤ 20; 1 ≤ b ≤ 109) — the number of Gena’s friends, the number of problems and the cost of a single monitor.

The following 2n lines describe the friends. Lines number 2i and (2i + 1) contain the information about the i-th friend. The 2i-th line contains three integers x ik i and m i (1 ≤ x i ≤ 109; 1 ≤ k i ≤ 109; 1 ≤ m i ≤ m) — the desired amount of money, monitors and the number of problems the friend can solve. The (2i + 1)-th line contains m i distinct positive integers — the numbers of problems that the i-th friend can solve. The problems are numbered from 1 to m.

Output

Print the minimum amount of money Gena needs to spend to solve all the problems. Or print -1, if this cannot be achieved.

Examples

input

2 2 1
100 1 1
2
100 2 1
1

output

202

input

3 2 5
100 1 1
1
100 1 1
2
200 1 2
1 2

output

205

input

1 2 1
1 1 1
1

output

-1

Solution:

#include <iostream>
#include <iomanip>
#include <cstdio>
#include <set>
#include <vector>
#include <map>
#include <cmath>
#include <algorithm>
#include <memory.h>
#include <string>
#include <cstring>
#include <sstream>
#include <cstdlib>
#include <ctime>
#include <cassert>

using namespace std;

const long long inf = (long long)4e18;

const int N = 12345;
const int T = (1 << 21);

int x[N], k[N], mask[N];
long long f[T];

int main() {
  int n, m, b;
  scanf("%d %d %d", &n, &m, &b);
  for (int i = 0; i < n; i++) {
    int foo;
    scanf("%d %d %d", x + i, k + i, &foo);
    mask[i] = 0;
    while (foo--) {
      int bar;
      scanf("%d", &bar);
      mask[i] |= (1 << (bar - 1));
    }
  }
  for (int i = 0; i < n; i++)
    for (int j = i + 1; j < n; j++)
      if (k[i] > k[j]) {
swap(x[i], x[j]);
swap(k[i], k[j]);
swap(mask[i], mask[j]);
}
for (int i = 0; i < (1 << m); i++) f[i] = inf;
  f[0] = 0;
  long long ans = inf;
  for (int i = 0; i < n; i++) {
    for (int t = 0; t < (1 << m); t++)
      if (f[t] + x[i] < f[t | mask[i]]) {
        f[t | mask[i]] = f[t] + x[i];
      }
    long long cur = f[(1 << m) - 1];
    cur += 1LL * k[i] * b;
    if (cur < ans) ans = cur;
  }
  cout << (ans == inf ? -1 : ans) << endl;
  return 0;
}