//#define _GLIBCXX_DEBUG #include using namespace std; #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater>; const int INF = 0xccccccc; const ll LINF = 0xcccccccccccccccLL; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} //head int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vector> G(n+m*2); rep(i, m) { int k, c; cin >> k >> c; rep(j, k) { int s; cin >> s; s--; if(s&1) { G[s].emplace_back(n+i*2, s/2+1+c); G[s].emplace_back(n+i*2+1, s/2+1+c); G[n+i*2+1].emplace_back(s, s/2+1); } else { G[s].emplace_back(n+i*2, s/2+c); G[s].emplace_back(n+i*2+1, s/2+1+c); G[n+i*2].emplace_back(s, s/2+1); } } } vector dist(n+m*2, LINF); PQG> q; q.emplace(0, 0); dist[0] = 0; while(not q.empty()) { auto [d, now] = q.top(); q.pop(); if(d != dist[now]) continue; for(auto [to, c]:G[now]) { if(chmin(dist[to], d+c)) { q.emplace(d+c, to); } } } if(dist[n-1] == LINF) puts("-1"); else cout << dist[n-1] << endl; }