結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー optopt
提出日時 2020-12-17 09:46:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 1,898 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 218,012 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-20 06:54:40
合計ジャッジ時間 11,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_07 AC 59 ms
5,376 KB
testcase_08 AC 80 ms
5,376 KB
testcase_09 AC 575 ms
5,376 KB
testcase_10 AC 103 ms
5,376 KB
testcase_11 AC 485 ms
5,376 KB
testcase_12 AC 188 ms
5,376 KB
testcase_13 AC 304 ms
5,376 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 122 ms
5,376 KB
testcase_16 AC 53 ms
5,376 KB
testcase_17 AC 38 ms
5,376 KB
testcase_18 AC 31 ms
5,376 KB
testcase_19 AC 299 ms
5,376 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 436 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 32 ms
5,376 KB
testcase_29 AC 314 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 52 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 429 ms
5,376 KB
testcase_34 AC 192 ms
5,376 KB
testcase_35 AC 24 ms
5,376 KB
testcase_36 AC 16 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 36 ms
5,376 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 288 ms
5,376 KB
testcase_44 AC 145 ms
5,376 KB
testcase_45 AC 689 ms
5,376 KB
testcase_46 AC 61 ms
5,376 KB
testcase_47 AC 287 ms
5,376 KB
testcase_48 AC 332 ms
5,376 KB
testcase_49 AC 30 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 61 ms
5,376 KB
testcase_53 AC 32 ms
5,376 KB
testcase_54 AC 282 ms
5,376 KB
testcase_55 AC 283 ms
5,376 KB
testcase_56 AC 282 ms
5,376 KB
testcase_57 AC 470 ms
5,376 KB
testcase_58 AC 468 ms
5,376 KB
testcase_59 AC 468 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep2(i, m, n) for (int i = (m); i < (n); ++i)
#define rep(i, n) rep2(i, 0, n)
using ll = long long;
template<class T> inline bool chmin(T &a, const T b) { if (a > b) { a = b; return true; } return false; }
template<class T, size_t n> istream &operator>>(istream &is, array<T, n> &v) { for (auto &e : v) is >> e; return is; }
template<class T> istream &operator>>(istream &is, vector<T> &v) { for (auto &e : v) is >> e; return is; }
struct fast_ios { fast_ios(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
const ll INFll = (1ll<<60) - 1;


template<typename T>
struct edge {
  int v; T w;
  edge(int v, T w) : v(v), w(w) {}
};
template<typename T>
using Graph = vector<vector<edge<T>>>;

template<typename T>
vector<T> dijkstra(const Graph<T> &G, int s) {
  int n = G.size();
  const auto INF_T = numeric_limits<T>::max() / 2 - 1;
  vector<T> dist(n, INF_T);
  using PTi = pair<T, int>;
  priority_queue<PTi, vector<PTi>, function<bool(PTi, PTi)>> pq(
    [] (auto x, auto y) { return x.first > y.first; }
  );

  dist[s] = 0;
  pq.emplace(dist[s], s);
  
  while (!pq.empty()) {
    auto [d, u] = pq.top(); pq.pop();
    if (dist[u] < d) continue;
    for (auto &[v, w] : G[u]) if (chmin(dist[v], d + w)) pq.emplace(dist[v], v);
  }
  return dist;
}


int main() {
  int T, n, m; cin >> T >> n >> m;
  vector<array<ll, 3>> E(m); cin >> E;
  for (auto &[u, v, w] : E) --u, --v;

  ll ans = INFll;
  rep(i, m) {
    Graph<ll> G(n);
    int s = -1, t = -1, wst = -1;
    rep(j, m) {
      auto [u, v, w] = E[j];
      if (j == i) {
        s = v, t = u, wst = w;
        continue;
      }
      G[u].emplace_back(v, w);
      if (T == 0) G[v].emplace_back(u, w);
    }
    auto dist = dijkstra(G, s);
    chmin(ans, dist[t] + wst);
  }

  if (ans == INFll) ans = -1;
  cout << ans << '\n';
}
0