結果

問題 No.2477 Drifting
ユーザー tnakao0123tnakao0123
提出日時 2024-06-21 14:12:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,010 bytes
コンパイル時間 1,098 ms
コンパイル使用メモリ 86,004 KB
実行使用メモリ 565,876 KB
最終ジャッジ日時 2024-06-21 14:12:34
合計ジャッジ時間 7,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 387 ms
71,104 KB
testcase_01 AC 213 ms
56,520 KB
testcase_02 AC 346 ms
64,132 KB
testcase_03 AC 196 ms
49,320 KB
testcase_04 AC 95 ms
43,744 KB
testcase_05 AC 178 ms
47,656 KB
testcase_06 MLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2477.cc:  No.2477 Drifting - yukicoder
 */

#include<cstdio>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int MAX_M = 200000;
const int MAX_GN = MAX_N + MAX_M;
const int MAX_K = 200000;
const long long LINF = 1LL << 62;

/* typedef */

using ll = long long;
using pii = pair<int,int>;
using vpii = vector<pii>;
using si = set<int>;
using mpii = map<pii,int>;
using pli = pair<ll,int>;

/* global variables */

vpii es[MAX_N], nbrs[MAX_GN];
int orgs[MAX_GN];
si exs[MAX_GN];
ll ds[MAX_GN];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);

  for (int i = 0; i < m; i++) {
    int u, v, w;
    scanf("%d%d%d", &u, &v, &w);
    u--, v--;
    es[u].push_back({v, w});
  }

  for (int i = 0; i < n; i++) orgs[i] = i;
  
  int gn = n;
  mpii evs;

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

  while (k--) {
    int a, b, c;
    scanf("%d%d%d", &a, &b, &c);
    a--, b--, c--;

    auto mit = evs.find({a, b});
    int u = -1;
    if (mit != evs.end()) u = mit->second;
    else {
      u = evs[{a, b}] = gn++;
      orgs[u] = b;
    }

    exs[u].insert(c);
  }
  //printf(" gn=%d\n", gn);

  for (int u = 0; u < gn; u++) {
    int ou = orgs[u];
    for (auto [v, w]: es[ou]) {
      if (! exs[u].empty() && exs[u].find(v) != exs[u].end())
	continue;

      auto mit = evs.find({ou, v});
      if (mit != evs.end()) v = mit->second;
      nbrs[u].push_back({v, w});
    }
  }

  evs.clear();
  fill(ds, ds + gn, LINF);
  ds[0] = 0;
  priority_queue<pli> q;
  q.push({0, 0});

  ll mind = LINF;
  while (! q.empty()) {
    auto [ud, u] = q.top(); q.pop();
    ud = -ud;
    if (ds[u] != ud) continue;

    if (u == n - 1) { mind = ud; break; }

    for (auto [v, w]: nbrs[u]) {
      ll vd = ud + w;
      if (ds[v] > vd) {
	ds[v] = vd;
	q.push({-vd, v});
      }
    }
  }

  printf("%lld\n", (mind < LINF) ? mind : -1LL);
  
  return 0;
}
0