結果

問題 No.807 umg tours
ユーザー koyoprokoyopro
提出日時 2019-12-16 00:15:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 522 ms / 4,000 ms
コード長 2,130 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 166,924 KB
実行使用メモリ 40,772 KB
最終ジャッジ日時 2024-05-03 00:06:51
合計ジャッジ時間 7,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 310 ms
31,116 KB
testcase_12 AC 284 ms
26,260 KB
testcase_13 AC 413 ms
33,804 KB
testcase_14 AC 167 ms
17,600 KB
testcase_15 AC 130 ms
14,028 KB
testcase_16 AC 406 ms
35,172 KB
testcase_17 AC 482 ms
39,464 KB
testcase_18 AC 478 ms
39,512 KB
testcase_19 AC 522 ms
40,772 KB
testcase_20 AC 288 ms
23,760 KB
testcase_21 AC 297 ms
24,812 KB
testcase_22 AC 128 ms
12,564 KB
testcase_23 AC 112 ms
10,620 KB
testcase_24 AC 303 ms
32,436 KB
testcase_25 AC 474 ms
39,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) //printf(__VA_ARGS__)

typedef pair<int, int> pos;
int pos::*x = &pos::first;
int pos::*y = &pos::second;

int dxy[] = {0, 1, 0, -1, 0};

/*================================*/

int N, M, a, b, c;
int A[20], B[20];

signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    
    cin >> N >> M;
    vector< vector<pos> > R(N);
    REP(i, M) {
        cin >> a >> b >> c;
        a--;
        b--;
        R[a].push_back(*new pos(b, c));
        R[b].push_back(*new pos(a, c));
    }
    // without skip, with skip
    vector<pos> DP(N);
    REP(i, N) DP[i].*x = DP[i].*y = LONG_MAX;
    DP[0].*x = DP[0].*y = 0;
    auto c = [](pos l, pos r) { return l.*y > r.*y; };
    priority_queue<pos, std::vector<pos>, decltype(c)> q(c);
    q.push(*new pos(0, 0));
    while(!q.empty()) {
        pos item = q.top();
        q.pop();
        int index = item.*x;

        for (auto route: R[index]) {
            int ni = route.*x;
            {
                // without skip
                int newCost = DP[index].*x + route.*y;
                if (newCost < DP[ni].*x) {
                    DP[ni].*x = newCost;
                    q.push(*new pos(ni, newCost));
                }
            }
            {
                // with skip
                int newCost = min(DP[index].*x, DP[index].*y + route.*y);
                if (newCost < DP[ni].*y) {
                    DP[ni].*y = newCost;
                    q.push(*new pos(ni, newCost));
                }
            }
        }
    }

    REP(i, N) cout << DP[i].*x + DP[i].*y << endl;

    return 0;
}
0