結果

問題 No.1480 Many Complete Graphs
ユーザー 👑 NachiaNachia
提出日時 2021-04-16 20:46:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 1,093 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-07-03 04:07:35
合計ジャッジ時間 4,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 15 ms
7,552 KB
testcase_14 AC 10 ms
6,144 KB
testcase_15 AC 25 ms
8,576 KB
testcase_16 AC 16 ms
7,552 KB
testcase_17 AC 15 ms
7,040 KB
testcase_18 AC 6 ms
6,016 KB
testcase_19 AC 14 ms
6,912 KB
testcase_20 AC 20 ms
7,424 KB
testcase_21 AC 17 ms
7,296 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 35 ms
11,008 KB
testcase_24 AC 35 ms
8,960 KB
testcase_25 AC 49 ms
10,792 KB
testcase_26 AC 58 ms
12,052 KB
testcase_27 AC 35 ms
9,088 KB
testcase_28 AC 42 ms
12,576 KB
testcase_29 AC 45 ms
12,700 KB
testcase_30 AC 42 ms
12,272 KB
testcase_31 AC 43 ms
12,144 KB
testcase_32 AC 43 ms
12,572 KB
testcase_33 AC 41 ms
12,144 KB
testcase_34 AC 42 ms
12,576 KB
testcase_35 AC 42 ms
12,680 KB
testcase_36 AC 43 ms
12,556 KB
testcase_37 AC 41 ms
12,148 KB
testcase_38 AC 42 ms
12,676 KB
testcase_39 AC 41 ms
12,144 KB
testcase_40 AC 41 ms
12,148 KB
testcase_41 AC 40 ms
12,144 KB
testcase_42 AC 42 ms
12,576 KB
testcase_43 AC 43 ms
12,700 KB
testcase_44 AC 41 ms
12,272 KB
testcase_45 AC 43 ms
12,700 KB
testcase_46 AC 42 ms
12,268 KB
testcase_47 AC 76 ms
12,800 KB
testcase_48 AC 74 ms
12,672 KB
testcase_49 AC 80 ms
12,800 KB
testcase_50 AC 47 ms
12,288 KB
testcase_51 AC 77 ms
12,672 KB
testcase_52 AC 60 ms
13,184 KB
testcase_53 AC 62 ms
13,184 KB
testcase_54 AC 60 ms
13,184 KB
testcase_55 AC 60 ms
13,312 KB
testcase_56 AC 62 ms
13,184 KB
testcase_57 AC 39 ms
11,264 KB
testcase_58 AC 40 ms
12,396 KB
evil_aftercontest.txt AC 78 ms
21,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <queue>
using namespace std;
using ll=long long;
using ull=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

template<class E> using nega_queue = priority_queue<E,vector<E>,greater<E>>;

const ll INF = 1001001001001001001;

struct Edge{ int to; ll d; };

int N,M;
vector<vector<Edge>> E;
vector<ll> D;

int main(){
  scanf("%d%d",&N,&M);
  E.resize(N+M);
  rep(i,M){
    int k,c; scanf("%d%d",&k,&c);
    rep(kk,k){
      int s; scanf("%d",&s);
      E[s-1].push_back({N+i,s+c});
      E[N+i].push_back({s-1,s+c});
    }
  }

  D.assign(N+M,INF);
  nega_queue<pair<ll,int>> Q;
  D[0]=0; Q.push({0,0});
  while(Q.size()){
    ll d = Q.top().first;
    int p = Q.top().second; Q.pop();
    if(D[p]!=d) continue;
    for(auto e : E[p]){
      ll nxd = D[p] + e.d;
      if(e.to<N) if(nxd%2==1) nxd++;
      if(D[e.to]<=nxd) continue;
      D[e.to] = nxd; Q.push({nxd,e.to});
    }
  }


  if(D[N-1] == INF) printf("-1\n");
  else printf("%lld\n",D[N-1]/2);
  return 0;
}
0