結果

問題 No.807 umg tours
ユーザー simansiman
提出日時 2021-05-20 13:10:41
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,647 bytes
コンパイル時間 1,123 ms
コンパイル使用メモリ 145,276 KB
実行使用メモリ 20,596 KB
最終ジャッジ日時 2024-04-18 14:02:26
合計ジャッジ時間 9,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,948 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 391 ms
17,344 KB
testcase_12 AC 321 ms
13,524 KB
testcase_13 AC 476 ms
18,828 KB
testcase_14 AC 201 ms
11,300 KB
testcase_15 AC 155 ms
9,164 KB
testcase_16 AC 509 ms
14,796 KB
testcase_17 AC 612 ms
19,920 KB
testcase_18 AC 604 ms
20,596 KB
testcase_19 AC 593 ms
19,172 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 342 ms
18,924 KB
testcase_25 AC 584 ms
19,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

const int MAX_N = 100010;

struct Edge {
  int to;
  int cost;

  Edge(int to = -1, int cost = -1) {
    this->to = to;
    this->cost = cost;
  }
};

struct Node {
  int v;
  int cost;
  bool use_ticket;

  Node(int v = -1, int cost = -1, bool use_ticket = false) {
    this->v = v;
    this->cost = cost;
    this->use_ticket = use_ticket;
  }

  bool operator>(const Node &n) const {
    return cost > n.cost;
  }
};

vector<Edge> E[MAX_N];

int main() {
  int N, M;
  cin >> N >> M;
  int a, b, c;
  for (int i = 0; i < M; ++i) {
    cin >> a >> b >> c;

    E[a].push_back(Edge(b, c));
    E[b].push_back(Edge(a, c));
  }

  priority_queue <Node, vector<Node>, greater<Node>> pque;
  pque.push(Node(1, 0));
  int costs[N + 1][2];
  memset(costs, 0, sizeof(costs));
  bool visited[N + 1][2];
  memset(visited, false, sizeof(visited));
  costs[1][1] = 0;
  visited[1][1] = true;

  while (not pque.empty()) {
    Node node = pque.top();
    pque.pop();

    if (visited[node.v][node.use_ticket]) continue;
    visited[node.v][node.use_ticket] = true;
    costs[node.v][node.use_ticket] = node.cost;

    for (auto &[u, cost] : E[node.v]) {
      pque.push(Node(u, node.cost + cost, node.use_ticket));

      if (not node.use_ticket) {
        pque.push(Node(u, node.cost, true));
      }
    }
  }

  for (int i = 1; i <= N; ++i) {
    cout << costs[i][0] + costs[i][1] << endl;
  }

  return 0;
}
0