結果

問題 No.807 umg tours
コンテスト
ユーザー firiexp
提出日時 2019-08-28 21:47:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,686 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 93,388 KB
最終ジャッジ日時 2025-11-10 03:35:04
合計ジャッジ時間 2,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp:15:13: error: ‘uint32_t’ does not name a type
   15 | using u32 = uint32_t;
      |             ^~~~~~~~
main.cpp:12:1: note: ‘uint32_t’ is defined in header ‘<cstdint>’; did you forget to ‘#include <cstdint>’?
   11 | #include <cmath>
  +++ |+#include <cstdint>
   12 | 
main.cpp: In function ‘int main()’:
main.cpp:53:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   53 |         int a, b; ll c; scanf("%d %d %lld", &a, &b, &c);
      |                         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #
raw source code

#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

template <typename T>
struct edge {
    int from, to; T cost;
    edge(int to, T cost) : from(-1), to(to), cost(cost) {}
    edge(int from, int to, T cost) : from(from), to(to), cost(cost) {}
};

template <typename T>
vector<T> dijkstra(int s,vector<vector<edge<T>>> &G){
    size_t n=G.size();
    vector<T> d(n, INF<T>);
    priority_queue<pair<T, int>,vector<pair<T, int>>,greater<>> Q;
    d[s]=0;
    Q.emplace(0,s);
    while(!Q.empty()){
        T cost; int i;
        tie(cost, i) = Q.top(); Q.pop();
        if(d[i] < cost) continue;
        for (auto &&e : G[i]) {
            auto cost2 = cost + e.cost;
            if(d[e.to] <= cost2) continue;
            d[e.to] = cost2;
            Q.emplace(d[e.to], e.to);
        }
    }
    return d;
}

int main() {
    int n, m;
    cin >> n >> m;
    vector<vector<edge<ll>>> G(2*n);
    for (int i = 0; i < m; ++i) {
        int a, b; ll c; scanf("%d %d %lld", &a, &b, &c);
        a--; b--;
        G[a].emplace_back(b, c);
        G[b].emplace_back(a, c);
        G[a].emplace_back(b+n, 0);
        G[b].emplace_back(a+n, 0);
        G[a+n].emplace_back(b+n, c);
        G[b+n].emplace_back(a+n, c);
    }
    auto dist = dijkstra(0, G);
    puts("0");
    for (int i = 1; i < n; ++i) {
        printf("%lld\n", dist[i]+dist[i+n]);
    }
    return 0;
}
0