結果

問題 No.1601 With Animals into Institute
ユーザー chocoruskchocorusk
提出日時 2021-07-10 14:08:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 548 ms / 3,000 ms
コード長 1,610 bytes
コンパイル時間 3,655 ms
コンパイル使用メモリ 195,568 KB
実行使用メモリ 18,604 KB
最終ジャッジ日時 2024-07-02 02:14:38
合計ジャッジ時間 12,817 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 4 ms
6,016 KB
testcase_03 AC 10 ms
6,144 KB
testcase_04 AC 10 ms
6,144 KB
testcase_05 AC 10 ms
6,144 KB
testcase_06 AC 542 ms
18,512 KB
testcase_07 AC 531 ms
18,464 KB
testcase_08 AC 534 ms
18,460 KB
testcase_09 AC 528 ms
18,604 KB
testcase_10 AC 531 ms
18,588 KB
testcase_11 AC 541 ms
18,596 KB
testcase_12 AC 534 ms
18,456 KB
testcase_13 AC 545 ms
18,472 KB
testcase_14 AC 548 ms
18,456 KB
testcase_15 AC 544 ms
18,464 KB
testcase_16 AC 537 ms
18,472 KB
testcase_17 AC 544 ms
18,456 KB
testcase_18 AC 11 ms
6,272 KB
testcase_19 AC 12 ms
6,272 KB
testcase_20 AC 11 ms
6,272 KB
testcase_21 AC 11 ms
6,272 KB
testcase_22 AC 11 ms
6,144 KB
testcase_23 AC 11 ms
6,272 KB
testcase_24 AC 11 ms
6,272 KB
testcase_25 AC 11 ms
6,272 KB
testcase_26 AC 11 ms
6,272 KB
testcase_27 AC 3 ms
5,888 KB
testcase_28 AC 4 ms
5,888 KB
testcase_29 AC 4 ms
5,888 KB
testcase_30 AC 4 ms
5,888 KB
testcase_31 AC 4 ms
5,888 KB
testcase_32 AC 4 ms
6,016 KB
testcase_33 AC 4 ms
5,888 KB
testcase_34 AC 4 ms
6,016 KB
testcase_35 AC 4 ms
5,760 KB
testcase_36 AC 4 ms
5,888 KB
testcase_37 AC 4 ms
5,888 KB
testcase_38 AC 4 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
ll d[2][100010];
int n, m;
vector<P> g[100010];
int a[200010], b[200010];
ll c[200010];
int x[200010];
const ll INF=1e18;
int main()
{
    cin>>n>>m;
    for(int i=0; i<m; i++){
        cin>>a[i]>>b[i]>>c[i]>>x[i];
        a[i]--; b[i]--;
        g[a[i]].push_back({b[i], i});
        g[b[i]].push_back({a[i], i});
    }
    fill(d[0], d[0]+n, INF);
    fill(d[1], d[1]+n, INF);
    d[0][n-1]=0;
    using Pl=pair<ll, P>;
    priority_queue<Pl, vector<Pl>, greater<Pl>> que;
    que.push({0, {n-1, 0}});
    while(!que.empty()){
        auto p=que.top(); que.pop();
        int x1=p.second.first;
        int t=p.second.second;
        if(p.first>d[t][x1]) continue;
        for(auto q:g[x1]){
            int y1=q.first;
            int i=q.second;
            if(d[x[i]|t][y1]>d[t][x1]+c[i]){
                d[x[i]|t][y1]=d[t][x1]+c[i];
                que.push({d[x[i]|t][y1], {y1, (x[i]|t)}});
            }
        }
    }
    for(int i=0; i<n-1; i++){
        cout<<d[1][i]<<endl;
    }
    return 0;
}
0