TLE:dijkstra中的小根堆没有及时清除多余的数据,改为使用set
WA:统计时要用
ans+=max((h-dis[i])/x,0)+1;
而不是
ans+=max((h-dis[i])/x+1,0);