#line 2 "cpplib/util/template.hpp" #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("avx2") #include using namespace std; struct __INIT__{__INIT__(){cin.tie(0);ios::sync_with_stdio(false);cout< vec; typedef vector> mat; typedef vector>> mat3; typedef vector svec; typedef vector> smat; templateusing V=vector; templateusing VV=V>; templateinline void output(T t){bool f=0;for(auto i:t){cout<<(f?" ":"")<inline void output2(T t){for(auto i:t)output(i);} templateinline void debug(T t){bool f=0;for(auto i:t){cerr<<(f?" ":"")<inline void debug2(T t){for(auto i:t)debug(i);} #define loop(n) for(long long _=0;_<(long long)(n);++_) #define _overload4(_1,_2,_3,_4,name,...) name #define __rep(i,a) repi(i,0,a,1) #define _rep(i,a,b) repi(i,a,b,1) #define repi(i,a,b,c) for(long long i=(long long)(a);i<(long long)(b);i+=c) #define rep(...) _overload4(__VA_ARGS__,repi,_rep,__rep)(__VA_ARGS__) #define _overload3_rev(_1,_2,_3,name,...) name #define _rep_rev(i,a) repi_rev(i,0,a) #define repi_rev(i,a,b) for(long long i=(long long)(b)-1;i>=(long long)(a);--i) #define rrep(...) _overload3_rev(__VA_ARGS__,repi_rev,_rep_rev)(__VA_ARGS__) // #define rep(i,...) for(auto i:range(__VA_ARGS__)) // #define rrep(i,...) for(auto i:reversed(range(__VA_ARGS__))) // #define repi(i,a,b) for(lint i=lint(a);i<(lint)(b);++i) // #define rrepi(i,a,b) for(lint i=lint(b)-1;i>=lint(a);--i) // #define irep(i) for(lint i=0;;++i) // inline vector range(long long n){if(n<=0)return vector();vectorv(n);iota(v.begin(),v.end(),0LL);return v;} // inline vector range(long long a,long long b){if(b<=a)return vector();vectorv(b-a);iota(v.begin(),v.end(),a);return v;} // inline vector range(long long a,long long b,long long c){if((b-a+c-1)/c<=0)return vector();vectorv((b-a+c-1)/c);for(int i=0;i<(int)v.size();++i)v[i]=i?v[i-1]+c:a;return v;} // templateinline T reversed(T v){reverse(v.begin(),v.end());return v;} #define all(n) begin(n),end(n) templatebool chmin(T& s,const E& t){bool res=s>t;s=min(s,t);return res;} templatebool chmax(T& s,const E& t){bool res=s(s,t);return res;} const vector dx={1,0,-1,0,1,1,-1,-1}; const vector dy={0,1,0,-1,1,-1,1,-1}; #define SUM(v) accumulate(all(v),0LL) templateauto make_vector(T x,int arg,Args ...args){if constexpr(sizeof...(args)==0)return vector(arg,x);else return vector(arg,make_vector(x,args...));} #define extrep(v,...) for(auto v:__MAKE_MAT__({__VA_ARGS__})) #define bit(n,a) ((n>>a)&1) vector> __MAKE_MAT__(vector v){if(v.empty())return vector>(1,vector());long long n=v.back();v.pop_back();vector> ret;vector> tmp=__MAKE_MAT__(v);for(auto e:tmp)for(long long i=0;i>; templateusing graph_w=vector>>; templateostream& operator<<(ostream& out,pairv){out<<"("<>; template using graph_w=std::vector>>; graph load_graph(int n,int m){graph g(n);for(int i=0;i>s>>t;--s;--t;g[s].push_back(t);g[t].push_back(s);}return g;} graph load_digraph(int n,int m){graph g(n);for(int i=0;i>s>>t;--s;--t;g[s].push_back(t);}return g;} graph load_graph0(int n,int m){graph g(n);for(int i=0;i>s>>t;g[s].push_back(t);g[t].push_back(s);}return g;} graph load_digraph0(int n,int m){graph g(n);for(int i=0;i>s>>t;g[s].push_back(t);}return g;} graph load_tree(int n){graph g(n);for(int i=0;i>s>>t;--s;--t;g[s].push_back(t);g[t].push_back(s);}return g;} graph load_tree0(int n){graph g(n);for(int i=0;i>s>>t;g[s].push_back(t);g[t].push_back(s);}return g;} graph load_treep(int n){graph g(n);for(int i=0;i>t;g[i+1].push_back(t);g[t].push_back(i+1);}return g;} templategraph_w load_graph_weight(int n,int m){graph_w g(n);for(int i=0;i>s>>t>>u;--s;--t;g[s].emplace_back(t,u);g[t].emplace_back(s,u);}return g;} templategraph_w load_digraph_weight(int n,int m){graph_w g(n);for(int i=0;i>s>>t>>u;--s;--t;g[s].emplace_back(t,u);}return g;} templategraph_w load_graph0_weight(int n,int m){graph_w g(n);for(int i=0;i>s>>t>>u;g[s].emplace_back(t,u);g[t].emplace_back(s,u);}return g;} templategraph_w load_digraph0_weight(int n,int m){graph_w g(n);for(int i=0;i>s>>t>>u;g[s].emplace_back(t,u);}return g;} templategraph_w load_tree_weight(int n){graph_w g(n);for(int i=0;i>s>>t>>u;--s;--t;g[s].emplace_back(t,u);g[t].emplace_back(s,u);}return g;} templategraph_w load_tree0_weight(int n){graph_w g(n);for(int i=0;i>s>>t>>u;g[s].emplace_back(t,u);g[t].emplace_back(s,u);}return g;} templategraph_w load_treep_weight(int n){graph_w g(n);for(int i=0;i>t>>u;g[i+1].emplace_back(t,u);g[t].emplace_back(i+1,u);}return g;} #line 10 "cpplib/graph_tree/dijkstra.hpp" /** * @brief ダイクストラ法 O((E+V)logE) */ template,typename Add=std::plus> struct dijkstra{ int s; std::vector diff; std::vector par; std::vectorused; dijkstra(const graph_w& list,int s,T zero=T(),T inf=std::numeric_limits::max(),F f=F(),Add add=Add()):s(s){ int n=list.size(); diff.resize(n,inf); par.resize(n,-1); used.resize(n,0); std::priority_queue,std::vector>,std::greater>>que; diff[s]=zero; que.push(std::make_pair(T(),s)); while(!que.empty()){ auto d=que.top(); que.pop(); T x; int now; std::tie(x,now)=d; if(used[now])continue; used[now]=1; for(auto d2:list[now]){ T sa; int to; std::tie(to,sa)=d2; T tmp=add(diff[now],sa); if(f(tmp,diff[to])){ diff[to]=tmp; par[to]=now; que.emplace(diff[to],to); } } } } vector get(){ return diff; } T operator[](int idx){ return diff[idx]; } bool reachable(int t){ return par[t]!=-1; } std::vector get_path(int t){ std::vectorres; while(t!=s){ res.push_back(t); t=par[t]; } res.push_back(s); std::reverse(res.begin(),res.end()); return res; } }; #line 3 "code.cpp" int main(){ lint n,m; cin>>n>>m; graph_w v(n+200000); lint cnt=n; rep(i,m){ lint k; cin>>k; vec a,b; lint c; cin>>c; rep(j,k){ lint x; cin>>x; if(x%2)a.push_back(x); else b.push_back(x); } lint p=a.size(),q=b.size(); if(p){ rep(j,p-1){ v[cnt+j].emplace_back(cnt+j+1,0); } rep(j,p){ v[cnt+j].emplace_back(a[j]-1,a[j]/2); } rep(j,p){ v[a[j]-1].emplace_back(cnt,a[j]/2+c+1); } rep(j,q){ v[b[j]-1].emplace_back(cnt,b[j]/2+c+1); } cnt+=p; } if(q){ rep(j,q-1){ v[cnt+j].emplace_back(cnt+j+1,0); } rep(j,q){ v[cnt+j].emplace_back(b[j]-1,b[j]/2); } rep(j,p){ v[a[j]-1].emplace_back(cnt,a[j]/2+c+1); } rep(j,q){ v[b[j]-1].emplace_back(cnt,b[j]/2+c); } cnt+=q; } } auto ans=dijkstra(v,0)[n-1]; if(ans>=INF)cout<<-1<