結果

問題 No.1480 Many Complete Graphs
ユーザー tnakao0123tnakao0123
提出日時 2021-04-17 18:32:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 1,840 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 104,068 KB
実行使用メモリ 18,184 KB
最終ジャッジ日時 2024-07-04 01:34:36
合計ジャッジ時間 5,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,080 KB
testcase_01 AC 4 ms
11,204 KB
testcase_02 AC 4 ms
12,100 KB
testcase_03 AC 5 ms
11,332 KB
testcase_04 AC 4 ms
11,588 KB
testcase_05 AC 4 ms
11,332 KB
testcase_06 AC 4 ms
12,100 KB
testcase_07 AC 4 ms
10,824 KB
testcase_08 AC 4 ms
11,840 KB
testcase_09 AC 4 ms
11,588 KB
testcase_10 AC 4 ms
10,820 KB
testcase_11 AC 5 ms
11,332 KB
testcase_12 AC 4 ms
12,104 KB
testcase_13 AC 14 ms
13,252 KB
testcase_14 AC 11 ms
12,872 KB
testcase_15 AC 21 ms
14,532 KB
testcase_16 AC 13 ms
13,896 KB
testcase_17 AC 14 ms
13,412 KB
testcase_18 AC 6 ms
12,228 KB
testcase_19 AC 14 ms
12,788 KB
testcase_20 AC 19 ms
13,704 KB
testcase_21 AC 15 ms
14,020 KB
testcase_22 AC 10 ms
13,252 KB
testcase_23 AC 26 ms
15,044 KB
testcase_24 AC 29 ms
14,484 KB
testcase_25 AC 37 ms
15,888 KB
testcase_26 AC 37 ms
16,912 KB
testcase_27 AC 30 ms
14,124 KB
testcase_28 AC 33 ms
16,324 KB
testcase_29 AC 32 ms
16,292 KB
testcase_30 AC 32 ms
17,092 KB
testcase_31 AC 32 ms
17,344 KB
testcase_32 AC 33 ms
17,728 KB
testcase_33 AC 32 ms
16,688 KB
testcase_34 AC 31 ms
16,584 KB
testcase_35 AC 40 ms
17,560 KB
testcase_36 AC 38 ms
16,588 KB
testcase_37 AC 37 ms
16,764 KB
testcase_38 AC 40 ms
17,340 KB
testcase_39 AC 38 ms
16,440 KB
testcase_40 AC 34 ms
16,320 KB
testcase_41 AC 35 ms
17,240 KB
testcase_42 AC 40 ms
17,712 KB
testcase_43 AC 39 ms
17,232 KB
testcase_44 AC 39 ms
17,092 KB
testcase_45 AC 41 ms
17,728 KB
testcase_46 AC 41 ms
16,704 KB
testcase_47 AC 64 ms
17,296 KB
testcase_48 AC 54 ms
17,700 KB
testcase_49 AC 56 ms
17,816 KB
testcase_50 AC 41 ms
17,220 KB
testcase_51 AC 67 ms
17,492 KB
testcase_52 AC 50 ms
17,900 KB
testcase_53 AC 55 ms
17,080 KB
testcase_54 AC 57 ms
17,892 KB
testcase_55 AC 54 ms
17,540 KB
testcase_56 AC 52 ms
17,980 KB
testcase_57 AC 45 ms
16,964 KB
testcase_58 AC 42 ms
18,184 KB
evil_aftercontest.txt AC 81 ms
23,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1480.cc:  No.1480 Many Complete Graphs - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 100000;
const int MAX_M = 100000;
const int MAX_GN = MAX_N + MAX_M * 2;
const long long LINF = 1LL << 62;

/* typedef */

typedef long long ll;
typedef pair<ll,int> pli;
typedef pair<int,int> pii;
typedef vector<pii> vpii;

/* global variables */

vpii nbrs[MAX_GN];
ll ds[MAX_GN];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);

  for (int i = 0; i < m; i++) {
    int t0 = n + i * 2, t1 = t0 + 1;
    nbrs[t0].push_back(pii(t1, 1));
    nbrs[t1].push_back(pii(t0, 1));

    int ki, ci;
    scanf("%d%d", &ki, &ci);
    for (int j = 0; j < ki; j++) {
      int sj;
      scanf("%d", &sj);
      sj--;
      int tj = (sj & 1) ? t1 : t0;
      int wj = sj + 1 + ci;
      nbrs[sj].push_back(pii(tj, wj));
      nbrs[tj].push_back(pii(sj, wj));
    }
  }

  int gn = n + m * 2, st = 0, gl = n - 1;
  fill(ds, ds + gn, LINF);
  ds[st] = 0;

  priority_queue<pli> q;
  q.push(pli(0, st));

  while (! q.empty()) {
    pli u = q.top(); q.pop();
    ll ud = -u.first;
    int ui = u.second;
    if (ds[ui] != ud) continue;
    if (ui == gl) break;

    vpii &nbru = nbrs[ui];
    for (vpii::iterator vit = nbru.begin(); vit != nbru.end(); vit++) {
      int vi = vit->first;
      ll vd = ud + vit->second;
      if (ds[vi] > vd) {
	ds[vi] = vd;
	q.push(pli(-vd, vi));
      }
    }
  }

  printf("%lld\n", (ds[gl] >= LINF) ? -1 : ds[gl] / 2);
  return 0;
}
0