結果

問題 No.1480 Many Complete Graphs
ユーザー 👑 PCTprobabilityPCTprobability
提出日時 2021-02-22 23:26:36
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 4,869 bytes
コンパイル時間 4,779 ms
コンパイル使用メモリ 273,364 KB
実行使用メモリ 16,848 KB
最終ジャッジ日時 2023-09-16 02:41:19
合計ジャッジ時間 9,895 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 14 ms
8,172 KB
testcase_14 AC 10 ms
6,268 KB
testcase_15 AC 26 ms
9,228 KB
testcase_16 AC 15 ms
7,916 KB
testcase_17 AC 15 ms
7,392 KB
testcase_18 AC 7 ms
6,324 KB
testcase_19 AC 15 ms
7,128 KB
testcase_20 AC 21 ms
7,308 KB
testcase_21 AC 15 ms
7,576 KB
testcase_22 AC 9 ms
5,468 KB
testcase_23 AC 33 ms
11,800 KB
testcase_24 AC 30 ms
9,144 KB
testcase_25 AC 44 ms
11,372 KB
testcase_26 AC 52 ms
12,800 KB
testcase_27 AC 32 ms
9,088 KB
testcase_28 AC 42 ms
13,552 KB
testcase_29 AC 47 ms
13,612 KB
testcase_30 AC 41 ms
13,224 KB
testcase_31 AC 41 ms
13,156 KB
testcase_32 AC 41 ms
13,540 KB
testcase_33 AC 42 ms
13,092 KB
testcase_34 AC 44 ms
13,476 KB
testcase_35 AC 41 ms
13,596 KB
testcase_36 AC 41 ms
13,592 KB
testcase_37 AC 41 ms
13,288 KB
testcase_38 AC 41 ms
13,736 KB
testcase_39 AC 41 ms
13,296 KB
testcase_40 AC 41 ms
13,540 KB
testcase_41 AC 40 ms
13,344 KB
testcase_42 AC 42 ms
13,480 KB
testcase_43 AC 43 ms
13,620 KB
testcase_44 AC 43 ms
13,084 KB
testcase_45 AC 44 ms
13,732 KB
testcase_46 AC 42 ms
13,096 KB
testcase_47 AC 87 ms
16,720 KB
testcase_48 AC 85 ms
16,780 KB
testcase_49 AC 89 ms
16,776 KB
testcase_50 AC 52 ms
16,480 KB
testcase_51 AC 86 ms
16,848 KB
testcase_52 AC 66 ms
14,884 KB
testcase_53 AC 71 ms
14,904 KB
testcase_54 AC 68 ms
14,980 KB
testcase_55 AC 69 ms
14,908 KB
testcase_56 AC 75 ms
14,976 KB
testcase_57 AC 47 ms
16,096 KB
testcase_58 AC 47 ms
14,868 KB
evil_aftercontest.txt AC 93 ms
27,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
using ll = long long;
using ld = long double;
#define all(s) (s).begin(),(s).end()
#define vcin(n) for(ll i=0;i<ll(n.size());i++) cin>>n[i]
#define rep2(i, m, n) for (int i = (m); i < (n); ++i)
#define rep(i, n) rep2(i, 0, n)
#define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i)
#define drep(i, n) drep2(i, n, 0)
#define rever(vec) reverse(vec.begin(), vec.end())
#define sor(vec) sort(vec.begin(), vec.end())
#define fi first
#define se second
#define P pair<ll,ll>
//const ll mod = 998244353;
const ll mod = 1000000007;
const ll inf = 2000000000000000000ll;
static const long double pi = 3.141592653589793;
void YesNo(bool a){if(a){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}}
void YESNO(bool a){if(a){cout<<"YES"<<endl;}else{cout<<"NO"<<endl;}}
template<class T,class U> void chmax(T& t,const U& u){if(t<u) t=u;}
template<class T,class U> void chmin(T& t,const U& u){if(t>u) t=u;}
ll modPow(ll a, ll n, ll mod) { ll ret = 1; ll p = a % mod; while (n) { if (n & 1) ret = ret * p % mod; p = p * p % mod; n >>= 1; } return ret; }
struct graph{
  struct edge{
    ll to,cost;
  };
  ll v;
  vector<vector<edge>> g;
  vector<ll> d;
  vector<bool> negative;
  vector<bool> diameter;
  vector<ll> topological_sort;
  ll diametercost;
  bool bipartitecheck;
  vector<ll> bipartite;
  graph(ll n){
    init(n);
  }
  void init(ll n){
    v=n;
    g.resize(n);
    d.resize(n);
    negative.resize(n);
    diameter.resize(n);
    bipartite.resize(n);
    for(int i=0;i<v;i++){
      d[i]=inf;
      bipartite[i]=-1;
      negative[i]=false;
      diameter[i]=false;
    }
  }
  void addedge(ll s,ll t,ll cost){
    edge e;
    e.to=t;
    e.cost=cost;
    g[s].push_back(e);
  }
  void dijkstra(ll s){
    for(int i=0;i<v;i++){
      d[i]=inf;
    }
    d[s]=0;
    priority_queue<P,vector<P>,greater<P>> que;
    que.push(P(0,s));
    while(!que.empty()){
      P p=que.top();
      que.pop();
      ll V=p.second;
      if(d[V]<p.first) continue;
      for(auto e:g[V]){
        if(d[e.to]>d[V]+e.cost){
          d[e.to]=d[V]+e.cost;
          que.push(P(d[e.to],e.to));
        }
      }
    }
  }
  void BellmanFord(ll s){
    for(int i=0;i<v;i++){
      d[i]=inf;
      negative[i]=false;
    }
    d[s]=0;
    for(int i=0;i<v;i++){
      for(int V=0;V<v;V++){
        if(d[V]==inf){
          continue;
        }
        for(auto e:g[V]){
          if(d[e.to]>d[V]+e.cost){
            d[e.to]=d[V]+e.cost;
            if(i==v-1){
              negative[e.to]=true;
              negative[V]=true;
            }
          }
        }
      }
    }
  }
  void dfs(ll s){
    for(int i=0;i<v;i++){
      d[i]=inf;
    }
    d[s]=0;
    dfs2(s,-1);
  }
  void dfs2(ll s,ll v){
    for(auto e:g[s]){
      if(e.to==v) continue;
      if(d[e.to]>d[s]+e.cost){
        d[e.to]=d[s]+e.cost;
        dfs2(e.to,s);
      }
    }
  }
  void treediameter(){
    dfs(0);
    ll p=0;
    ll q=0;
    for(int i=0;i<v;i++){
      if(q<d[i]){
        q=d[i];
        p=i;
      }
    }
    diameter[p]=true;
    dfs(p);
    ll p2=0;
    ll q2=0;
    for(int i=0;i<v;i++){
      if(q2<d[i]){
        q2=d[i];
        p2=i;
      }
    }
    diameter[p2]=true;
    diametercost=d[p2];
  }
  void Bipartite(){
    Bipartitedfs(0);
  }
  void Bipartitedfs(ll s,ll cur=0){
    bipartite[s]=cur;
    for(auto e:g[s]){
      if(bipartite[e.to]!=-1){
        if((bipartite[e.to]==bipartite[s])^(!e.cost%2)){
          bipartitecheck=false;
        }
      }
      else{
        if(e.cost%2){
          Bipartitedfs(e.to,1-cur);
        }
        else{
          Bipartitedfs(e.to,cur);
        }
      }
    }
  }
  void topologicalsort(){
    for(int i=0;i<v;i++){
      d[i]=0;
    }
    for(int i=0;i<v;i++){
      if(d[i]) continue;
      topologicaldfs(i);
    }
    rever(topological_sort);
  }
  void topologicaldfs(ll a){
    d[a]=1;
    for(auto e:g[a]){
      if(d[e.to]) continue;
      topologicaldfs(e.to);
    }
    topological_sort.push_back(a);
  }
};
int main() {
  /* mod は 1e9+7 */
  ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
  cout<< fixed << setprecision(10);
  ll n,m;
  cin>>n>>m;
  graph g(n+2*m);
  for(int i=0;i<m;i++){
    ll k,c;
    cin>>k>>c;
    g.addedge(n+2*i,n+2*i+1,1);
    g.addedge(n+2*i+1,n+2*i,1);
  //  cout<<n+2*i<<" "<<n+2*i+1<<endl;
    for(int j=0;j<k;j++){
      ll s;
      cin>>s;
      s--;
      if(s%2){
        g.addedge(n+2*i+1,s,s+1+c);
        g.addedge(s,n+2*i+1,s+1+c);
      //  cout<<s<<" "<<n+2*i+1<<endl;
      }
      else{
        g.addedge(n+2*i,s,s+1+c);
        g.addedge(s,n+2*i,s+1+c);
      //  cout<<s<<" "<<n+2*i<<endl;
      }
    }
  }
  g.dijkstra(0);
  if(g.d[n-1]>inf/2){
    cout<<-1<<endl;
  }
  else{
    assert(g.d[n-1]%2==0);
    cout<<g.d[n-1]/2<<endl;
  }
}
0