結果

問題 No.614 壊れたキャンパス
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-14 15:42:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,281 bytes
コンパイル時間 1,215 ms
コンパイル使用メモリ 98,344 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-12-14 13:13:12
合計ジャッジ時間 11,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
13,772 KB
testcase_02 AC 2 ms
13,644 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 221 ms
18,816 KB
testcase_09 AC 188 ms
18,380 KB
testcase_10 AC 94 ms
20,148 KB
testcase_11 AC 917 ms
18,304 KB
testcase_12 AC 937 ms
18,304 KB
testcase_13 AC 921 ms
18,432 KB
testcase_14 AC 239 ms
18,944 KB
testcase_15 AC 76 ms
13,224 KB
testcase_16 AC 145 ms
20,608 KB
testcase_17 AC 103 ms
36,096 KB
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <tuple>
#include <vector>
using namespace std;
using i64 = long long;

constexpr i64 inf = 987654321987654321LL;

int main(void) {
  int N, M, K, S, T; scanf("%d%d%d%d%d", &N, &M, &K, &S, &T);
  --S, --T;
  vector<map<int, i64>> dp(N); // dp[階] := 最小コスト
  dp[0][S] = 0;
  vector<vector<pair<int, int>>> G(N, vector<pair<int, int>>()); // G[i] := {(i棟の出次階, i+1棟の入次階)のリスト}
  for(int i=0; i<M; ++i) {
    int a, b, c; scanf("%d%d%d", &a, &b, &c);
    --a, --b, --c;
    G[a].emplace_back(b, c);
  }

  for(int i=0; i<N; ++i) { // 棟 i
    for(auto&& pr : G[i]) {
      int src, dst; tie(src, dst) = pr; // 棟 i の src階から 棟 i+1 の dst階へは無料
      for(auto&& kv : dp[i]) {
        int k; i64 v; tie(k, v) = kv; // 棟 i の k 階は最小コスト v (dp[i][k] = v)
        if(dp[i+1].count(dst)) {
          dp[i+1][dst] = min(dp[i+1][dst], v + abs(k - src));
        } else {
          dp[i+1][dst] = v + abs(k - src);
        }
      }
    }
  }

  i64 mini = inf;
  for(auto&& kv : dp[N-1]) {
    int k; i64 v; tie(k, v) = kv;
    mini = min(mini, kv.second + abs(T - kv.first));
  }
  if(mini == inf) { mini = -1; }
  printf("%lld\n", mini);
  return 0;
}
0