結果

問題 No.1812 Uribo Road
ユーザー tnakao0123tnakao0123
提出日時 2022-01-16 00:56:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,536 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 61,536 KB
実行使用メモリ 693,280 KB
最終ジャッジ日時 2024-11-22 08:37:28
合計ジャッジ時間 54,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
333,032 KB
testcase_01 AC 2 ms
220,912 KB
testcase_02 AC 2 ms
362,052 KB
testcase_03 AC 10 ms
361,924 KB
testcase_04 AC 2 ms
362,044 KB
testcase_05 AC 2 ms
362,044 KB
testcase_06 AC 2 ms
152,808 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 21 ms
5,248 KB
testcase_09 AC 44 ms
5,248 KB
testcase_10 AC 15 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 TLE -
testcase_13 AC 187 ms
323,840 KB
testcase_14 AC 206 ms
323,672 KB
testcase_15 AC 294 ms
11,288 KB
testcase_16 AC 1,518 ms
72,576 KB
testcase_17 TLE -
testcase_18 AC 1,551 ms
12,168 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 80 ms
6,144 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 10 ms
5,248 KB
testcase_26 AC 6 ms
5,248 KB
testcase_27 AC 734 ms
8,796 KB
testcase_28 AC 18 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 24 ms
5,248 KB
testcase_31 TLE -
testcase_32 AC 9 ms
5,248 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1812.cc:  No.1812 Uribo Road - yukicoder
 */

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

/* constant */

const int MAX_N = 10000;
const int MAX_M = 20000;
const int MAX_K = 12;
const int KBITS = 1 << MAX_K;
const long long LINF = 1LL << 62;

/* typedef */

typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,int> pli;
typedef vector<pii> vpii;

/* global variables */

vpii nbrs[MAX_N];
int ebs[MAX_M], cs[MAX_M];
ll ds[MAX_N * KBITS];

/* subroutines */

/* main */

int main() {
  int n, m, k;
  scanf("%d%d%d", &n, &m, &k);
  int kbits = 1 << k, kmsk = kbits - 1;

  for (int i = 0; i < k; i++) {
    int ri;
    scanf("%d", &ri), ri--;
    ebs[ri] = 1 << i;
  }

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

  fill(ds, ds + n * kbits, LINF);
  ds[0] = 0;

  priority_queue<pli> q;
  q.push(pli(0, 0));

  int gl = (n - 1) << k | kmsk;

  while (! q.empty()) {
    pli u = q.top(); q.pop();
    ll ud = -u.first;
    int up = u.second;
    if (ds[up] != ud) continue;
    if (up == gl) break;

    int ui = up >> k, ub = up & kmsk;
    for (auto ve: nbrs[ui]) {
      int vi = ve.first, ei = ve.second;
      int vb = ub | ebs[ei];
      int vp = vi << k | vb;
      ll vd = ud + cs[ei];

      if (ds[vp] > vd) {
	ds[vp] = vd;
	q.push(pli(-vd, vp));
      }
    }
  }

  printf("%lld\n", ds[gl]);
  return 0;
}
0