結果

問題 No.2739 Time is money
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 19:12:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,211 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 63,228 KB
実行使用メモリ 20,952 KB
最終ジャッジ日時 2024-11-20 16:43:29
合計ジャッジ時間 6,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,256 KB
testcase_01 AC 4 ms
8,128 KB
testcase_02 AC 86 ms
15,168 KB
testcase_03 AC 153 ms
19,244 KB
testcase_04 AC 79 ms
14,784 KB
testcase_05 AC 106 ms
15,808 KB
testcase_06 AC 152 ms
19,032 KB
testcase_07 AC 211 ms
19,664 KB
testcase_08 AC 181 ms
19,628 KB
testcase_09 AC 187 ms
19,904 KB
testcase_10 AC 167 ms
19,620 KB
testcase_11 AC 236 ms
19,872 KB
testcase_12 AC 174 ms
18,756 KB
testcase_13 AC 167 ms
18,660 KB
testcase_14 AC 160 ms
18,748 KB
testcase_15 AC 110 ms
20,952 KB
testcase_16 AC 88 ms
17,296 KB
testcase_17 AC 213 ms
20,080 KB
testcase_18 AC 232 ms
20,092 KB
testcase_19 AC 121 ms
20,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2739.cc:  No.2739 Time is money - yukicoder
 */

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

/* constant */

const int MAX_N = 200000;
const long long LINF = 1LL << 62;

/* typedef */

typedef long long ll;
typedef pair<int,ll> pil;
typedef pair<ll,int> pli;
typedef vector<pil> vpil;

/* global variables */

vpil nbrs[MAX_N];
ll ds[MAX_N];

/* subroutines */

/* main */

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

  for (int i = 0; i < m; i++) {
    int u, v, c, t;
    scanf("%d%d%d%d", &u, &v, &c, &t);
    u--, v--;
    ll w = (ll)t * x + c;
    nbrs[u].push_back({v, w});
    nbrs[v].push_back({u, w});
  }

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

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

  while (! q.empty()) {
    auto [ud, u] = q.top(); q.pop();
    ud = -ud;
    if (ds[u] != ud) continue;
    if (u == n - 1) break;

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

  if (ds[n - 1] >= LINF)
    puts("-1");
  else {
    ll gt = (ds[n - 1] + x - 1) / x;
    printf("%lld\n", gt);
  }

  return 0;
}
0