Bribes

Ruritania is a country with a very badly maintained road network, which is not exactly good news for lorry drivers that constantly have to do deliveries. In fact, when roads are maintained, they become one-way. It turns out that it is sometimes impossible to get from one town to another in a legal way – however, we know that all towns are reachable, though illegally!

Fortunately for us, the police tend to be very corrupt and they will allow a lorry driver to break the rules and drive in the wrong direction provided they receive ‘a small gift’. There is one patrol car for every road and they will request 1000 Ruritanian dinars when a driver drives in the wrong direction. However, being greedy, every time a patrol car notices the same driver breaking the rule, they will charge double the amount of money they requested the previous time on that particular road.

Borna is a lorry driver that managed to figure out this bribing pattern. As part of his job, he has to make K stops in some towns all over Ruritania and he has to make these stops in a certain order. There are N towns (enumerated from 1 to N) in Ruritania and Borna’s initial location is the capital city i.e. town 1. He happens to know which ones out of the N - 1 roads in Ruritania are currently unidirectional, but he is unable to compute the least amount of money he needs to prepare for bribing the police. Help Borna by providing him with an answer and you will be richly rewarded.

Input

The first line contains N, the number of towns in Ruritania. The following N - 1 lines contain information regarding individual roads between towns. A road is represented by a tuple of integers ( abx), which are separated with a single whitespace character. The numbers a and b represent the cities connected by this particular road, and x is either 0 or 1: 0 means that the road is bidirectional, 1 means that only the a → b direction is legal. The next line contains K, the number of stops Borna has to make. The final line of input contains K positive integers s 1, …, s K: the towns Borna has to visit.

  • 1 ≤ N ≤ 105
  • 1 ≤ K ≤ 106
  • 1 ≤ a, b ≤ N for all roads
  •  for all roads
  • 1 ≤ s i ≤ N for all 1 ≤ i ≤ K

Output

The output should contain a single number: the least amount of thousands of Ruritanian dinars Borna should allocate for bribes, modulo 109 + 7.

Examples

input

5
1 2 0
2 3 0
5 1 1
3 4 1
5
5 4 5 2 2

output

4

Note

Borna first takes the route 1 → 5 and has to pay 1000 dinars. After that, he takes the route 5 → 1 → 2 → 3 → 4 and pays nothing this time. However, when he has to return via 4 → 3 → 2 → 1 → 5, he needs to prepare 3000 (1000+2000) dinars. Afterwards, getting to 2 via 5 → 1 → 2 will cost him nothing. Finally, he doesn’t even have to leave town 2 to get to 2, so there is no need to prepare any additional bribe money. Hence he has to prepare 4000 dinars in total.

Solution:

#include <bits/stdc++.h>

using namespace std;

const int md = 1000000007;

inline void add(int &a, int b) {
a += b;
if (a >= md) a -= md;
}

inline int mul(int a, int b) {
return (long long)a * b % md;
}

inline int pw(int a, int b) {
int res = 1;
while (b > 0) {
if (b & 1) res = mul(res, a);
a = mul(a, a);
b >>= 1;
}
return res;
}

const int N = 200010;

vector < pair <int, int> > g[N];

int de[N];
int T, tin[N], tout[N];
int kw, w[N];
int pv[N], pr[N][22];

void dfs(int v) {
w[kw++] = v;
tin[v] = ++T;
int sz = g[v].size();
for (int j = 0; j < sz; j++) {
    int u = g[v][j].first;
    if (u == pv[v]) {
      continue;
    }
    pv[u] = v;
    de[u] = de[v] + 1;
    dfs(u);
  }
  tout[v] = ++T;
}

bool anc(int x, int y) {
  return (tin[x] <= tin[y] && tout[y] <= tout[x]);
}

int lca(int x, int y) {
  if (anc(x, y)) return x;
  for (int j = 19; j >= 0; j--)
if (!anc(pr[x][j], y)) x = pr[x][j];
return pv[x];
}

int up[N], down[N];

void sums(int v) {
int sz = g[v].size();
for (int j = 0; j < sz; j++) {
    int u = g[v][j].first;
    if (u == pv[v]) {
      continue;
    }
    sums(u);
    up[v] += up[u];
    down[v] += down[u];
  }
}

int ans;

void calc(int v) {
  int sz = g[v].size();
  for (int j = 0; j < sz; j++) {
    int u = g[v][j].first;
    if (u == pv[v]) {
      continue;
    }
    int dir = g[v][j].second;
    if (dir == 1) {
      add(ans, pw(2, -up[u]));
      add(ans, md - 1);
    }
    if (dir == -1) {
      add(ans, pw(2, -down[u]));
      add(ans, md - 1);
    }
    calc(u);
  }
}

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) {
    g[i].clear();
  }
  for (int i = 0; i < n - 1; i++) {
    int foo, bar, qwe;
    scanf("%d %d %d", &foo, &bar, &qwe);
    foo--; bar--;
    g[foo].push_back(make_pair(bar, qwe));
    g[bar].push_back(make_pair(foo, -qwe));
  }
  int root = 0;
  pv[root] = root;
  de[root] = 0;
  T = 0;
  kw = 0;
  dfs(root);
  for (int i = 0; i < n; i++) pr[i][0] = pv[i];
  for (int j = 1; j < 20; j++)
    for (int i = 0; i < n; i++) pr[i][j] = pr[pr[i][j - 1]][j - 1];
  for (int i = 0; i < n; i++) up[i] = down[i] = 0;
  int tt;
  scanf("%d", &tt);
  int cur = 0;
  while (tt--) {
    int nxt;
    scanf("%d", &nxt);
    nxt--;
    int z = lca(cur, nxt);
    up[cur]--;
    up[z]++;
    down[z]++;
    down[nxt]--;
    cur = nxt;
  }
  sums(root);
  ans = 0;
  calc(root);
  printf("%d\n", ans);
  return 0;
}