結果

問題 No.1601 With Animals into Institute
ユーザー 鴨志田卓鴨志田卓
提出日時 2023-07-20 17:44:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 1,183 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 207,756 KB
実行使用メモリ 31,168 KB
最終ジャッジ日時 2024-09-20 13:52:21
合計ジャッジ時間 9,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,600 KB
testcase_01 AC 5 ms
9,600 KB
testcase_02 AC 5 ms
9,728 KB
testcase_03 AC 8 ms
10,240 KB
testcase_04 AC 8 ms
10,240 KB
testcase_05 AC 8 ms
10,368 KB
testcase_06 AC 258 ms
31,016 KB
testcase_07 AC 270 ms
31,108 KB
testcase_08 AC 252 ms
31,124 KB
testcase_09 AC 261 ms
31,056 KB
testcase_10 AC 257 ms
31,008 KB
testcase_11 AC 260 ms
31,008 KB
testcase_12 AC 263 ms
31,132 KB
testcase_13 AC 283 ms
31,168 KB
testcase_14 AC 292 ms
30,996 KB
testcase_15 AC 268 ms
31,128 KB
testcase_16 AC 265 ms
31,044 KB
testcase_17 AC 265 ms
31,096 KB
testcase_18 AC 8 ms
10,312 KB
testcase_19 AC 8 ms
10,312 KB
testcase_20 AC 9 ms
10,368 KB
testcase_21 AC 8 ms
10,308 KB
testcase_22 AC 8 ms
10,304 KB
testcase_23 AC 8 ms
10,308 KB
testcase_24 AC 8 ms
10,308 KB
testcase_25 AC 9 ms
10,308 KB
testcase_26 AC 8 ms
10,368 KB
testcase_27 AC 4 ms
9,728 KB
testcase_28 AC 5 ms
9,660 KB
testcase_29 AC 5 ms
9,668 KB
testcase_30 AC 5 ms
9,704 KB
testcase_31 AC 5 ms
9,664 KB
testcase_32 AC 5 ms
9,728 KB
testcase_33 AC 5 ms
9,728 KB
testcase_34 AC 5 ms
9,728 KB
testcase_35 AC 5 ms
9,588 KB
testcase_36 AC 5 ms
9,728 KB
testcase_37 AC 5 ms
9,728 KB
testcase_38 AC 5 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int N = 1e5 + 10;

using edge = pair<long long, int>;

int n, m;
vector<edge> g[N * 2];

long long dis[N * 2];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    cin >> n >> m;
    for(int i = 1, u, v, w, b; i <= m; i ++) {
        cin >> u >> v >> w >> b;
        g[u].push_back({w, v});
        g[v].push_back({w, u});
        
        g[N + u].push_back({w, N + v});
        g[N + v].push_back({w, N + u});
        
        if(b) {
            g[u].push_back({w, N + v});
            g[v].push_back({w, N + u});
        
            g[N + u].push_back({w, v});
            g[N + v].push_back({w, u});
        }
    }

    memset(dis, 0x3f, sizeof dis);
    dis[N + n] = 0;
    priority_queue<edge, vector<edge>, greater<edge> > pq;
    pq.push({0, N + n});
    while(pq.size()) {
        auto [d, u] = pq.top();
        pq.pop();

        if(dis[u] < d) continue;

        for(auto [w, v] : g[u]) {
            if(dis[v] > dis[u] + w) {
                dis[v] = dis[u] + w;
                pq.push({dis[v], v});
            }
        }
    }

    for(int i = 1; i < n; i ++)
        cout << dis[i] << "\n";

}
0