結果

問題 No.807 umg tours
ユーザー kkey000kkey000
提出日時 2023-06-16 20:51:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,400 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 181,048 KB
実行使用メモリ 62,780 KB
最終ジャッジ日時 2024-06-24 12:27:08
合計ジャッジ時間 12,672 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 450 ms
16,132 KB
testcase_12 AC 605 ms
22,236 KB
testcase_13 AC 1,064 ms
35,820 KB
testcase_14 AC 365 ms
20,404 KB
testcase_15 AC 249 ms
19,472 KB
testcase_16 AC 576 ms
24,172 KB
testcase_17 AC 1,044 ms
25,664 KB
testcase_18 AC 1,725 ms
62,780 KB
testcase_19 AC 1,324 ms
39,192 KB
testcase_20 WA -
testcase_21 AC 303 ms
11,136 KB
testcase_22 WA -
testcase_23 AC 95 ms
6,944 KB
testcase_24 AC 306 ms
18,532 KB
testcase_25 AC 524 ms
27,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>


#define INF 10e9
#define rep(i, a) for (int i = 0; i < (a); i++)
using namespace std;

typedef struct edge
{
    int to;
    int cost;
} edge;

int main()
{
    long long int n, m;
    cin >> n >> m;

    vector<edge> graph[n];
    long long int u, v, c;

    long long int i, j;
    for (i = 0; i < m; i++)
    {
        cin >> u >> v >> c;
        edge e;
        e.to = v - 1;
        e.cost = c;
        graph[u - 1].push_back(e);
        e.to = u - 1;
        graph[v - 1].push_back(e);
    }

    long long int d[2][n];

    for (i = 0; i < n; i++)
    {
        if (i == 0)
        {
            d[0][i] = 0;
            d[1][i] = 0;
        }
        else
        {
            d[0][i] = INF;
            d[1][i] = INF;
        }
    }
    priority_queue<pair<pair<long long int, long long int>, long long int>, vector<pair<pair<long long int, long long int>, long long int>>, greater<pair<pair<long long int, long long int>, long long int>>> q;
    q.push(make_pair(make_pair(0, 0), 0));
    while (!q.empty())
    {
        pair<pair<long long int, long long int>, long long int> p = q.top();
        q.pop();

        long long int v = p.first.first;

        if ((p.second == 0) && (d[0][v] >= p.first.second))
        {
            for (i = 0; i < graph[v].size(); i++)
            {
                edge e = graph[v][i];
                if (p.second == 0)
                {
                    if (d[0][e.to] > d[0][v] + e.cost)
                    {
                        d[0][e.to] = d[0][v] + e.cost;
                        q.push(make_pair(make_pair(e.to, d[0][e.to]), 0));
                    }
                    if (d[1][e.to] > d[0][v])
                    {
                        d[1][e.to] = d[0][v];
                        q.push(make_pair(make_pair(e.to, d[1][e.to]), 1));
                    }
                }
            }
        }
        else if ((p.second == 1) && (d[1][v] >= p.first.second))
        {
            for (i = 0; i < graph[v].size(); i++)
            {
                edge e = graph[v][i];
                if (d[1][e.to] > d[1][v] + e.cost)
                {
                    d[1][e.to] = d[1][v] + e.cost;
                    q.push(make_pair(make_pair(e.to, d[1][e.to]), 1));
                }
            }
        }
    }
    for (i = 0; i < n; i++)
    {
        cout << (d[0][i] + d[1][i]) << endl;
    }
}
0