POJ 3159 差分約束+迪傑斯特拉+優先隊列 圖的數據結構用數組表示

#include<cstdio>
#include<cstring>
#include<iostream>
#include<iomanip>
#include<queue>
#include<cmath>
#include<stack>
#include<map>
#include<vector>
#include<set>
#include<algorithm>
using namespace std;
typedef long long LL;
const int int_max = 0x07777777;
const int int_min = 0x80000000;
const int maxn = 31000;
const int maxm = 160000;
struct HeapNode{
    int u,d;
    HeapNode(int _u, int _d):u(_u),d(_d){}
    bool operator < (const HeapNode& a) const {
        return d > a.d;
    }
};
struct Edge {
    int e,v;
}es[160000];
int neg;
int node[maxn];
int nexte[maxm];
int n,m; 
bool done[maxn];
int d[maxn],p[maxn];
void addedge (int s, int e, int v){
    es[neg].e = e;
    es[neg].v = v;
    nexte[neg] = node[s];
    node[s] = neg++;
}
void dij (int s){
    for(int i = 0; i <= n; i++) d[i] = int_max;
    memset(done, 0, sizeof(done));

    d[s] = 0;
    priority_queue<HeapNode> q;
    q.push(HeapNode(s,0));
    while(!q.empty()){
        HeapNode x = q.top();
        q.pop();
        int u = x.u;
        if(done[u]) continue;
        done[u] = true;
        int p = node[u];
        while (p!=-1) {
            if(d[es[p].e] > d[u]+es[p].v){
                d[es[p].e] = d[u]+es[p].v;
                q.push(HeapNode(es[p].e,d[es[p].e]));
            }
            p = nexte[p];
        }
    }
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章