結果

問題 No.1480 Many Complete Graphs
ユーザー jupirojupiro
提出日時 2021-04-16 22:51:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 2,128 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 129,272 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-07-03 04:17:53
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 14 ms
7,552 KB
testcase_14 AC 10 ms
5,888 KB
testcase_15 AC 24 ms
8,576 KB
testcase_16 AC 14 ms
7,296 KB
testcase_17 AC 16 ms
7,040 KB
testcase_18 AC 5 ms
5,888 KB
testcase_19 AC 15 ms
6,784 KB
testcase_20 AC 20 ms
7,040 KB
testcase_21 AC 16 ms
7,296 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 32 ms
11,008 KB
testcase_24 AC 31 ms
8,960 KB
testcase_25 AC 45 ms
10,752 KB
testcase_26 AC 50 ms
12,132 KB
testcase_27 AC 33 ms
8,960 KB
testcase_28 AC 43 ms
12,836 KB
testcase_29 AC 45 ms
12,960 KB
testcase_30 AC 42 ms
12,288 KB
testcase_31 AC 42 ms
12,284 KB
testcase_32 AC 43 ms
12,836 KB
testcase_33 AC 41 ms
12,416 KB
testcase_34 AC 43 ms
12,828 KB
testcase_35 AC 43 ms
12,944 KB
testcase_36 AC 43 ms
12,948 KB
testcase_37 AC 41 ms
12,412 KB
testcase_38 AC 42 ms
13,072 KB
testcase_39 AC 42 ms
12,416 KB
testcase_40 AC 41 ms
12,412 KB
testcase_41 AC 40 ms
12,544 KB
testcase_42 AC 42 ms
12,828 KB
testcase_43 AC 42 ms
12,964 KB
testcase_44 AC 41 ms
12,412 KB
testcase_45 AC 45 ms
12,828 KB
testcase_46 AC 42 ms
12,288 KB
testcase_47 AC 88 ms
15,488 KB
testcase_48 AC 89 ms
15,488 KB
testcase_49 AC 89 ms
15,616 KB
testcase_50 AC 53 ms
15,104 KB
testcase_51 AC 86 ms
15,488 KB
testcase_52 AC 65 ms
14,188 KB
testcase_53 AC 64 ms
14,192 KB
testcase_54 AC 66 ms
14,076 KB
testcase_55 AC 68 ms
14,064 KB
testcase_56 AC 68 ms
14,072 KB
testcase_57 AC 44 ms
14,848 KB
testcase_58 AC 48 ms
14,224 KB
evil_aftercontest.txt AC 96 ms
25,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <utility>
#include <tuple>
#include <cmath>
#include <numeric>
#include <set>
#include <map>
#include <array>
#include <complex>
#include <iomanip>
#include <cassert>
#include <random>
using ll = long long;
using std::cin;
using std::cout;
using std::endl;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const int inf = (int)1e9 + 7;
const long long INF = 1LL << 60;

namespace KKT89
{
  std::vector<ll> dijkstra(int start, std::vector<std::vector<std::pair<int, ll>>>& graph)
  {
    std::vector<ll> dist(graph.size(), INF); dist[start] = 0;
    std::priority_queue<std::pair<ll, int>, std::vector<std::pair<ll, int>>, std::greater<std::pair<ll, int>>> pq;
    pq.emplace(0, start);
    while (!pq.empty()) {
      ll cost; int idx;
      std::tie(cost, idx) = pq.top();
      pq.pop();
      if (dist[idx] < cost) continue;
      for (auto next : graph[idx]) 
        if (chmin(dist[next.first], cost + next.second))
          pq.emplace(dist[next.first], next.first);
    }
    return dist;
  }
}


void solve()
{
  int n, m; cin >> n >> m;
  std::vector<std::vector<std::pair<int, ll>>> g(n + m * 2);
  for (int i = 0; i < m; ++i)
  {
    int k; cin >> k;
    const int u = n + i * 2;
    const int v = u + 1;
    g[u].emplace_back(v, 1);
    g[v].emplace_back(u, 1);
    ll c; cin >> c;
    for (int i = 0; i < k; ++i)
    {
      int s; cin >> s;
      s -= 1;
      if(s & 1)
      {
        g[v].emplace_back(s, s + 1 + c);
        g[s].emplace_back(v, s + 1 + c);
      }
      else
      {
        g[u].emplace_back(s, s + 1 + c);
        g[s].emplace_back(u, s + 1 + c);
      }
    }
  }
  ll res = KKT89::dijkstra(0, g)[n - 1];
  if(res == INF)
  {
    cout << -1 << "\n";
    return;
  }
  res /= 2;
  cout << res << "\n";
}
int main()
{
  std::cin.tie(nullptr);
  std::ios::sync_with_stdio(false);

  int kkt = 1;
  //cin >> kkt;
  while(kkt--)
    solve();
  return 0;
}
0