题目大意:给定一个无向图,求源点到汇点的最短路,其中有k次机会把边权变为0
非常水的分层图。。话说所谓分层图其实就是多一维的SPFA。。。还起了这么个高大上的名字
这题裸SPFA过不去 要加堆优化 我的堆优化一定是写的有毛病 把heap[top--]=heap[0]改成top--就死活过不去 把魔法森林改一下测试了一下结果居然WA了
总之贴代码
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define M 10100
using namespace std;
struct abcd{
int to,f,next;
}table[100100];
typedef pair<int,int> ABCD;
ABCD heap[M*10];
unsigned short r,h;
int head[M],tot,top;
int n,m,k,s,t,ans=0x3f3f3f3f;
int f[M][11],pos[M][11];
void push_up(int t)
{
while( t>1 && f[heap[t].first][heap[t].second]<f[heap[t>>1].first][heap[t>>1].second] )
swap(heap[t],heap[t>>1]),swap(pos[heap[t].first][heap[t].second],pos[heap[t>>1].first][heap[t>>1].second]),t>>=1;
}
void insert(ABCD x)
{
heap[++top]=x;
pos[x.first][x.second]=top;
push_up(t