結果

問題 No.1480 Many Complete Graphs
ユーザー 👑 emthrmemthrm
提出日時 2021-04-16 21:03:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 3,598 bytes
コンパイル時間 2,577 ms
コンパイル使用メモリ 218,408 KB
実行使用メモリ 31,896 KB
最終ジャッジ日時 2023-09-16 02:52:30
合計ジャッジ時間 7,376 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 19 ms
12,576 KB
testcase_14 AC 14 ms
9,340 KB
testcase_15 AC 33 ms
14,184 KB
testcase_16 AC 18 ms
11,512 KB
testcase_17 AC 17 ms
10,548 KB
testcase_18 AC 8 ms
8,028 KB
testcase_19 AC 18 ms
10,380 KB
testcase_20 AC 26 ms
11,760 KB
testcase_21 AC 22 ms
12,304 KB
testcase_22 AC 12 ms
8,088 KB
testcase_23 AC 42 ms
21,464 KB
testcase_24 AC 40 ms
16,128 KB
testcase_25 AC 59 ms
19,932 KB
testcase_26 AC 72 ms
21,804 KB
testcase_27 AC 39 ms
16,424 KB
testcase_28 AC 58 ms
23,736 KB
testcase_29 AC 60 ms
23,740 KB
testcase_30 AC 57 ms
23,404 KB
testcase_31 AC 56 ms
23,304 KB
testcase_32 AC 56 ms
23,920 KB
testcase_33 AC 58 ms
23,328 KB
testcase_34 AC 57 ms
23,632 KB
testcase_35 AC 54 ms
23,428 KB
testcase_36 AC 57 ms
23,372 KB
testcase_37 AC 55 ms
23,308 KB
testcase_38 AC 55 ms
23,360 KB
testcase_39 AC 56 ms
23,404 KB
testcase_40 AC 55 ms
23,352 KB
testcase_41 AC 59 ms
23,328 KB
testcase_42 AC 56 ms
23,924 KB
testcase_43 AC 58 ms
23,640 KB
testcase_44 AC 56 ms
23,604 KB
testcase_45 AC 55 ms
23,728 KB
testcase_46 AC 54 ms
23,376 KB
testcase_47 AC 115 ms
31,152 KB
testcase_48 AC 116 ms
31,000 KB
testcase_49 AC 119 ms
31,072 KB
testcase_50 AC 72 ms
30,580 KB
testcase_51 AC 119 ms
31,020 KB
testcase_52 AC 86 ms
27,320 KB
testcase_53 AC 89 ms
27,164 KB
testcase_54 AC 89 ms
27,276 KB
testcase_55 AC 86 ms
27,148 KB
testcase_56 AC 89 ms
27,328 KB
testcase_57 AC 69 ms
31,896 KB
testcase_58 AC 72 ms
26,836 KB
evil_aftercontest.txt AC 154 ms
50,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

template <typename CostType>
struct Edge {
  int src, dst; CostType cost;
  Edge(int src, int dst, CostType cost = 0) : src(src), dst(dst), cost(cost) {}
  inline bool operator<(const Edge &x) const {
    return cost != x.cost ? cost < x.cost : dst != x.dst ? dst < x.dst : src < x.src;
  }
  inline bool operator<=(const Edge &x) const { return !(x < *this); }
  inline bool operator>(const Edge &x) const { return x < *this; }
  inline bool operator>=(const Edge &x) const { return !(*this < x); }
};

template <typename CostType>
struct Dijkstra {
  const CostType inf;

  Dijkstra(const std::vector<std::vector<Edge<CostType>>> &graph,
           const CostType inf = std::numeric_limits<CostType>::max())
  : graph(graph), inf(inf) {}

  std::vector<CostType> build(int s) {
    is_built = true;
    int n = graph.size();
    std::vector<CostType> dist(n, inf);
    dist[s] = 0;
    prev.assign(n, -1);
    using Pci = std::pair<CostType, int>;
    std::priority_queue<Pci, std::vector<Pci>, std::greater<Pci>> que;
    que.emplace(0, s);
    while (!que.empty()) {
      CostType cost; int ver; std::tie(cost, ver) = que.top(); que.pop();
      if (dist[ver] < cost) continue;
      for (const Edge<CostType> &e : graph[ver]) {
        if (dist[e.dst] > dist[ver] + e.cost) {
          dist[e.dst] = dist[ver] + e.cost;
          prev[e.dst] = ver;
          que.emplace(dist[e.dst], e.dst);
        }
      }
    }
    return dist;
  }

  std::vector<int> build_path(int t) const {
    assert(is_built);
    std::vector<int> res;
    for (; t != -1; t = prev[t]) res.emplace_back(t);
    std::reverse(res.begin(), res.end());
    return res;
  }

private:
  bool is_built = false;
  std::vector<std::vector<Edge<CostType>>> graph;
  std::vector<int> prev;
};

int main() {
  int n, m; cin >> n >> m;
  vector<vector<Edge<ll>>> graph(n + 1 + m * 3);
  REP(i, m) {
    int k, c; cin >> k >> c;
    vector<int> s[2];
    while (k--) {
      int sj; cin >> sj;
      s[sj & 1].emplace_back(sj);
    }
    for (int ver : s[0]) {
      graph[ver].emplace_back(ver, n + 1 + i * 3, ver / 2 + c);
      graph[n + 1 + i * 3].emplace_back(n + 1 + i * 3, ver, ver / 2);
      graph[n + 1 + i * 3 + 1].emplace_back(n + 1 + i * 3 + 1, ver, ver / 2);
    }
    for (int ver : s[1]) {
      graph[ver].emplace_back(ver, n + 1 + i * 3 + 1, (ver + 1) / 2 + c);
      graph[n + 1 + i * 3].emplace_back(n + 1 + i * 3, ver, (ver + 1) / 2);
      graph[n + 1 + i * 3 + 2].emplace_back(n + 1 + i * 3 + 2, ver, ver / 2);
    }
    graph[n + 1 + i * 3 + 1].emplace_back(n + 1 + i * 3 + 1, n + 1 + i * 3 + 2, 0);
  }
  ll ans = Dijkstra(graph, LINF).build(1)[n];
  cout << (ans == LINF ? -1 : ans) << '\n';
  return 0;
}
0