結果

問題 No.1301 Strange Graph Shortest Path
ユーザー DriceDrice
提出日時 2020-11-27 23:07:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,963 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 57,344 KB
実行使用メモリ 19,492 KB
最終ジャッジ日時 2024-07-26 20:19:18
合計ジャッジ時間 6,609 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,448 KB
testcase_01 AC 4 ms
9,984 KB
testcase_02 WA -
testcase_03 AC 95 ms
18,024 KB
testcase_04 AC 172 ms
19,492 KB
testcase_05 AC 91 ms
18,116 KB
testcase_06 AC 147 ms
18,456 KB
testcase_07 AC 127 ms
18,124 KB
testcase_08 AC 94 ms
17,148 KB
testcase_09 AC 135 ms
18,496 KB
testcase_10 WA -
testcase_11 AC 146 ms
18,424 KB
testcase_12 AC 153 ms
18,700 KB
testcase_13 AC 118 ms
18,580 KB
testcase_14 AC 129 ms
18,592 KB
testcase_15 AC 128 ms
17,888 KB
testcase_16 AC 173 ms
19,032 KB
testcase_17 AC 133 ms
18,152 KB
testcase_18 AC 116 ms
17,728 KB
testcase_19 AC 151 ms
18,544 KB
testcase_20 AC 155 ms
18,888 KB
testcase_21 AC 131 ms
18,032 KB
testcase_22 AC 164 ms
18,788 KB
testcase_23 AC 126 ms
17,992 KB
testcase_24 AC 156 ms
19,176 KB
testcase_25 AC 165 ms
18,956 KB
testcase_26 AC 132 ms
18,348 KB
testcase_27 AC 142 ms
18,440 KB
testcase_28 AC 102 ms
18,304 KB
testcase_29 WA -
testcase_30 AC 158 ms
18,640 KB
testcase_31 AC 163 ms
19,060 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 125 ms
19,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<queue>
#include<vector>
struct Edge{
    int u,v;
    long long c,d;
    Edge(int u,int v,long long c,long long d):u(u),v(v),c(c),d(d){}
    Edge(){}
};
std::vector<int>g[200005];
Edge edge[200005];
int fix[100005];
long long dis[200005];
int inEdge[200005];
int used[200005];
struct Node{
    int u;
    long long value;
    Node(int u,long long value):u(u),value(value){}
    bool operator < (const Node& other)const{
        return value>other.value;
    } 
};

long long dijkstra(int s,int t,int n){
    for(int i = 1; i <= n; i++) fix[i] = 0, dis[i] = 1e17+7;
    std::priority_queue<Node>Q;
    dis[s] = 0;
    Q.push(Node(s,0));
    while(Q.size()!=0){
        while(Q.size()!=0 && fix[Q.top().u]==1) Q.pop();
        if(Q.size()==0) break;
        Node cur = Q.top(); 
        Q.pop();
        int u = cur.u;
        fix[u] = 1;
        for(int e: g[u]){
            long long cost = edge[e].c;
            int v = edge[e].v;
            if(used[e]) cost = edge[e].d;
            if(dis[v] > dis[u]+cost){
                inEdge[v] = e;
                dis[v] = dis[u]+cost;
                Q.push(Node(v,dis[v]));
            }
        }
    }
    int cur = t;
    while(cur!=s){
        int ue = inEdge[cur];
        int ve = -1;
        if(ue%2) ve = ue+1;
        else ve = ue-1;
        used[ue] = used[ve] = 1;
        cur = edge[ue].u;
    }
    return dis[t];
}

int main(){
    int n,m;
    scanf("%d%d",&n,&m);
    int total = 0;
    for(int i = 1; i <= m; i++){
        int u,v; long long c,d;
        scanf("%d%d%lld%lld",&u,&v,&c,&d);
        edge[++total] = Edge(u,v,c,d);
        g[u].push_back(total);
        edge[++total] = Edge(v,u,c,d);
        g[v].push_back(total);
    }
    long long ans = dijkstra(1,n,n);
    ans += dijkstra(n,1,n);
    for(int i = 1; i <= 2*m; i++) used[i] = 0;
    long long ansb = dijkstra(n,1,n);
    ansb += dijkstra(1,n,n);
    printf("%lld\n",ans<ansb?ans:ansb);
    return 0;
}
0