結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 27 ms
6,944 KB
testcase_04 AC 28 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 54 ms
6,940 KB
testcase_08 AC 15 ms
6,944 KB
testcase_09 AC 295 ms
6,940 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 232 ms
6,940 KB
testcase_12 AC 48 ms
6,940 KB
testcase_13 AC 117 ms
6,944 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 10 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 52 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 176 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,948 KB
testcase_28 AC 8 ms
6,944 KB
testcase_29 AC 87 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 15 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 90 ms
6,940 KB
testcase_34 AC 53 ms
6,940 KB
testcase_35 AC 17 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 14 ms
6,944 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 27 ms
6,944 KB
testcase_44 AC 6 ms
6,940 KB
testcase_45 AC 353 ms
6,944 KB
testcase_46 AC 12 ms
6,944 KB
testcase_47 AC 78 ms
6,940 KB
testcase_48 AC 71 ms
6,940 KB
testcase_49 AC 9 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 15 ms
6,944 KB
testcase_53 AC 9 ms
6,940 KB
testcase_54 AC 103 ms
6,944 KB
testcase_55 AC 104 ms
6,944 KB
testcase_56 AC 103 ms
6,940 KB
testcase_57 AC 209 ms
6,940 KB
testcase_58 AC 201 ms
6,940 KB
testcase_59 AC 202 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void dijkstra(int)':
main.cpp:18:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   18 |     auto [d, u] = q.top();
      |          ^
main.cpp:22:16: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   22 |     for(auto &&[v, w]: g[u])
      |                ^
main.cpp: In function 'void undir()':
main.cpp:42:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   42 |       for(auto &&[v, w]: g[u])
      |                  ^
main.cpp: In function 'void dir()':
main.cpp:59:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   59 |       for(auto &&[v, w]: g[u])
      |                  ^

ソースコード

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