1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
#include<bits/stdc++.h> #define re register typedef long long ll; template<class T> inline void read(T &x) { x=0; char ch=getchar(),t=0; while(ch<'0'||ch>'9') t|=ch=='-',ch=getchar(); while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+(ch^48),ch=getchar(); if(t) x=-x; } template<class T,class ...T1> inline void read(T &x,T1 &...x1){ read(x),read(x1...); } template<class T> inline void write(T x) { if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10+'0'); } template<> inline void write(bool x){ std::cout<<x; } template<> inline void write(char c){ putchar(c); } template<> inline void write(char *s){ while(*s!='\0') putchar(*s++); } template<> inline void write(const char *s){ while(*s!='\0') putchar(*s++); } template<class T,class ...T1> inline void write(T x,T1 ...x1){ write(x),write(x1...); } template<class T> inline bool checkMax(T &x,T y){ return x<y?x=y,1:0; } template<class T> inline bool checkMin(T &x,T y){ return x>y?x=y,1:0; } const int MAXN=2e3+10,MAXM=1e5+10,MAXP=11,MAXS=(1<<10)+10; const int INF=0x3f3f3f3f; int N,M,P; int Dp[MAXN][MAXS]; bool Vis[MAXN]; struct G { int next,to,val; }Edge[MAXM<<1]; int Head[MAXN],Total=1; inline void addEdge(int u,int v,int w) { Edge[++Total]=(G){Head[u],v,w};Head[u]=Total; Edge[++Total]=(G){Head[v],u,w};Head[v]=Total; } inline void Spfa(int s) { std::queue<int>Q; for(int x=1;x<=N;++x) { for(int t=s&(s-1);t;t=(t-1)&s) checkMin(Dp[x][s],Dp[x][t]+Dp[x][s^t]); if(Dp[x][s]<INF) Q.push(x),Vis[x]=1; } while(!Q.empty()) { int x=Q.front();Q.pop(); Vis[x]=0; for(int e=Head[x],v;e;e=Edge[e].next) { v=Edge[e].to; if(checkMin(Dp[v][s],Dp[x][s]+Edge[e].val)&&(!Vis[v])) Q.push(v),Vis[v]=1; } } } int Freq[MAXP],Pt[MAXP],Id[MAXP]; int Val[MAXS],G[MAXS]; int main() {
read(N,M,P); std::memset(Dp,0x3f,sizeof(Dp)); for(int i=1,u,v,w;i<=M;++i){ read(u,v,w);addEdge(u,v,w); } for(int i=1;i<=P;++i) read(Id[i],Pt[i]),Dp[Pt[i]][(1<<(i-1))]=0,Freq[Id[i]]|=(1<<(i-1)); for(int s=0;s<(1<<P);++s) Spfa(s); std::memset(Val,0x3f,sizeof(Val)), std::memset(G,0x3f,sizeof(G)); for(int s=0;s<(1<<P);++s) for(int x=1;x<=N;++x) checkMin(Val[s],Dp[x][s]); G[0]=0; for(int s=1;s<(1<<P);++s) for(int t=s;t;t=(t-1)&s) { int res=0; for(int k=0;k<P;++k) if(t>>k&1) res|=Freq[Id[k+1]]; checkMin(G[s],G[s^t]+Val[res]); } write(G[(1<<P)-1]); return 0; }
|