結果

問題 No.1344 Typical Shortest Path Sum
ユーザー tarattata1tarattata1
提出日時 2021-01-16 14:24:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,169 bytes
コンパイル時間 1,186 ms
コンパイル使用メモリ 105,068 KB
実行使用メモリ 814,584 KB
最終ジャッジ日時 2024-11-27 15:51:54
合計ジャッジ時間 60,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
10,016 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 WA -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 MLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 TLE -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 TLE -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 TLE -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 5 ms
6,820 KB
testcase_61 AC 2 ms
6,820 KB
testcase_62 TLE -
testcase_63 AC 528 ms
17,280 KB
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 AC 135 ms
6,692 KB
testcase_69 AC 246 ms
10,844 KB
testcase_70 AC 2 ms
6,688 KB
testcase_71 AC 2 ms
6,692 KB
testcase_72 AC 2 ms
6,688 KB
testcase_73 AC 2 ms
6,688 KB
testcase_74 AC 2 ms
6,692 KB
testcase_75 AC 2 ms
6,688 KB
testcase_76 AC 2 ms
6,692 KB
testcase_77 AC 2 ms
6,688 KB
testcase_78 AC 2 ms
6,692 KB
testcase_79 AC 3 ms
76,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <cassert>
#include <numeric>
#include <functional>
#include <ctime>
#pragma warning(disable:4996) 

//#define ATCODER
#ifdef ATCODER
#include <atcoder/all>
#endif

typedef long long ll;
typedef unsigned long long ull;
#define LINF  9223300000000000000
#define LINF2 1223300000000000000
#define LINF3 1000000000000
#define INF 2140000000
//const long long MOD = 1000000007;
const long long MOD = 998244353;

using namespace std;
#ifdef ATCODER
using namespace atcoder;
#endif

vector<vector<pair<int,int> > > g;   // to, cost

typedef pair<ll, int> P;
vector<ll> dijkstra(int s, const vector<vector<pair<int, int> > >& G) {
    priority_queue< P, vector<P>, greater<P> > que;
    vector<ll> d(G.size(), LINF);
    d[s] = 0;
    que.push(P(0, s));
    while (!que.empty()) {
        int curr = que.top().second;
        ll  dcurr = que.top().first;
        que.pop();
        if (d[curr] < dcurr) continue;
        int i;
        for (i = 0; i < (int)G[curr].size(); i++) {
            int next = G[curr][i].first;
            ll  dist = G[curr][i].second;
            if (d[next] > d[curr] + dist) {
                d[next] = d[curr] + dist;
                que.push(P(d[next], next));
            }
        }
    }
    return d;
}

void solve()
{
    int n, m;
    scanf("%d%d", &n, &m);
    g.resize(n);
    int i, j;
    for (i = 0; i < m; i++) {
        int u, v, w;
        scanf("%d%d%d", &u, &v, &w); u--; v--;
        g[u].push_back(make_pair(v, w));
    }

    vector<vector<ll> > dist(n);
    
    for (i = 0; i < n; i++) {
        dist[i] = dijkstra(i, g);   
        ll ans = 0;
        for (j = 0; j < n; j++) {
            if (dist[i][j] < INF) ans += dist[i][j];
        }
        printf("%lld\n", ans);
    }


    return;
}

int main()
{
#if 1
    solve();
#else
    int T, t;
    cin >> T;
    for (t = 0; t < T; t++) {
        //cout << "Case #" << t + 1 << ": ";
        solve();
    }
#endif
    return 0;
}
0