[洛谷3403]跳楼机(spfa+数学相关)

题目描述

传送门

题解

f(i) 表示只用y和z并且%x=i的所能到达的楼层的最小高度。那么答案为 i=0x1hf(i)x+1 .
显然 f((i+y)%x)=f(i)+y,f((i+z)%x)=f(i)+z .这样的话建出图来跑一边最短路就行了。

代码

#include
#include
#include
#include
using namespace std;
#define LL long long
#define N 100005

LL n;
int x,y,z;
int tot,point[N],nxt[N*2],v[N*2]; LL c[N*2];
LL f[N],ans;
bool vis[N];
queue <int> q;

void addedge(int x,int y,LL z)
{
    ++tot; nxt[tot]=point[x]; point[x]=tot; v[tot]=y; c[tot]=z;
}
void spfa(int u)
{
    memset(f,127,sizeof(f)); f[u]=1;
    memset(vis,0,sizeof(vis)); vis[u]=true;
    while (!q.empty()) q.pop(); q.push(u);

    while (!q.empty())
    {
        int now=q.front(); q.pop();
        vis[now]=false;
        for (int i=point[now];i;i=nxt[i])
            if (f[now]+c[i]if (!vis[v[i]])
                {
                    vis[v[i]]=true;
                    q.push(v[i]);
                }
            }
    }
}
int main()
{
    scanf("%lld%d%d%d",&n,&x,&y,&z);
    for (int i=0;i1%x);
    for (int i=0;iif (f[i]<=n) ans+=(n-f[i])/(LL)x+1;
    printf("%lld\n",ans);
}

你可能感兴趣的:(题解,图论算法,数学相关)