結果

問題 No.2477 Drifting
ユーザー tnakao0123tnakao0123
提出日時 2024-06-21 15:41:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,910 bytes
コンパイル時間 1,174 ms
コンパイル使用メモリ 88,392 KB
実行使用メモリ 85,252 KB
最終ジャッジ日時 2024-06-21 15:41:15
合計ジャッジ時間 7,568 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
85,252 KB
testcase_01 AC 246 ms
61,420 KB
testcase_02 AC 352 ms
78,312 KB
testcase_03 AC 155 ms
39,052 KB
testcase_04 AC 59 ms
33,512 KB
testcase_05 AC 136 ms
36,452 KB
testcase_06 TLE -
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<unordered_map>
#include<unordered_set>
#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 long long LINF = 1LL << 62;

/* typedef */

using ll = long long;
using vl = vector<ll>;
using pii = pair<int,int>;
using vpii = vector<pii>;
using usi = unordered_set<int>;
using vusi = vector<usi>;
using umii = unordered_map<int,int>;

/* global variables */

vpii nbrs[MAX_N];
umii exis[MAX_N];
vusi excs[MAX_N];
vl dp[MAX_N];

/* 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--;
    nbrs[u].push_back({v, w});
  }

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

  for (int i = 0; i < k; i++) {
    int a, b, c;
    scanf("%d%d%d", &a, &b, &c);
    a--, b--, c--;

    auto mit = exis[b].find(a);
    int j = 0;
    if (mit != exis[b].end()) j = mit->second;
    else j = exis[b][a] = exis[b].size();

    if (j < excs[b].size()) excs[b][j].insert(c);
    else {
      usi cs; cs.insert(c);
      excs[b].push_back(cs);
    }
  }

  for (int u = 0; u < n; u++) {
    excs[u].push_back(usi());
    dp[u].assign((int)excs[u].size(), LINF);
  }

  dp[0][0] = 0;
  for (int u = 0; u < n; u++)
    for (int i = 0; i < excs[u].size(); i++)
      if (dp[u][i] < LINF) {
	for (auto [v, w]: nbrs[u]) {
	  if (! excs[u][i].empty() &&
	      excs[u][i].find(v) != excs[u][i].end())
	    continue;

	  auto mit = exis[v].find(u);
	  int j =
	    (mit != exis[v].end()) ? mit->second : exis[v].size();
	  dp[v][j] = min(dp[v][j], dp[u][i] + w);
	}
      }

  ll mind = *min_element(dp[n - 1].begin(), dp[n - 1].end());
  printf("%lld\n", (mind < LINF) ? mind : -1LL);
  
  return 0;
}
0