結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー CaiiiiiiiiCaiiiiiiii
提出日時 2024-09-23 20:41:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 1,520 bytes
コンパイル時間 9,944 ms
コンパイル使用メモリ 209,536 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-23 21:01:22
合計ジャッジ時間 19,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 30 ms
6,940 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 300 ms
6,940 KB
testcase_10 AC 15 ms
6,944 KB
testcase_11 AC 220 ms
6,940 KB
testcase_12 AC 45 ms
6,944 KB
testcase_13 AC 115 ms
6,940 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 7 ms
6,944 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 51 ms
6,944 KB
testcase_20 AC 4 ms
6,944 KB
testcase_21 AC 182 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 97 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 13 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 92 ms
6,944 KB
testcase_34 AC 56 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,944 KB
testcase_41 AC 3 ms
6,944 KB
testcase_42 AC 1 ms
6,944 KB
testcase_43 AC 15 ms
6,944 KB
testcase_44 AC 6 ms
6,940 KB
testcase_45 AC 367 ms
6,940 KB
testcase_46 AC 10 ms
6,944 KB
testcase_47 AC 83 ms
6,940 KB
testcase_48 AC 66 ms
6,944 KB
testcase_49 AC 8 ms
6,944 KB
testcase_50 AC 1 ms
6,940 KB
testcase_51 AC 1 ms
6,940 KB
testcase_52 AC 14 ms
6,944 KB
testcase_53 AC 7 ms
6,940 KB
testcase_54 AC 100 ms
6,944 KB
testcase_55 AC 106 ms
6,944 KB
testcase_56 AC 104 ms
6,940 KB
testcase_57 AC 205 ms
6,948 KB
testcase_58 AC 213 ms
6,944 KB
testcase_59 AC 199 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

typedef long long LL;

const int N = 2e3 + 7;
const LL INF = 0x3f3f3f3f3f3f3f3f;

int n, m, pre[N];
LL dis[N];
std::vector<std::pair<int, int>> g[N];

void dijkstra(int r) {
  std::priority_queue<std::pair<LL, int>, std::vector<std::pair<LL, int>>, std::greater<>> q;
  memset(pre, 0, sizeof pre);
  memset(dis, 0x3f, sizeof dis);
  dis[r] = 0, q.push({0, r});
  while(!q.empty()) {
    auto [d, u] = q.top();
    q.pop();
    if(d != dis[u])
      continue;
    for(auto &&[v, w]: g[u])
      if(dis[v] > d + w) {
	dis[v] = d + w;
	pre[v] = u;
	q.push({dis[v], v});
      }
  }
}

void undir() {
  scanf("%d%d", &n, &m);
  for(int i = 1, x, y, z; i <= m; ++i) {
    scanf("%d%d%d", &x, &y, &z);
    g[x].emplace_back(y, z);
    g[y].emplace_back(x, z);
  }
  LL ans = INF;
  for(int r = 1; r <= n; ++r) {
    dijkstra(r);
    for(int u = 1; u <= n; ++u)
      for(auto &&[v, w]: g[u])
	if(pre[u] != v && pre[v] != u)
	  ans = std::min(ans, dis[u] + dis[v] + w);
  }
  printf("%lld\n", ans == INF ? -1 : ans);
}

void dir() {
  scanf("%d%d", &n, &m);
  for(int i = 1, x, y, z; i <= m; ++i) {
    scanf("%d%d%d", &x, &y, &z);
    g[x].emplace_back(y, z);
  }
  LL ans = INF;
  for(int r = 1; r <= n; ++r) {
    dijkstra(r);
    for(int u = 1; u <= n; ++u)
      for(auto &&[v, w]: g[u])
	if(v == r)
	  ans = std::min(ans, dis[u] + w);
  }
  printf("%lld\n", ans == INF ? -1 : ans);
}	

int main() {

  int cas;
  scanf("%d", &cas);

  if(cas == 0)
    undir();
  else
    dir();

  return 0;

}
0