BZOJ 2118: 墨墨的等式

16 篇文章 1 订阅
6 篇文章 0 订阅

这道题太TM神了。。智商被虐啊 好题啊!
找一个ai,若x为合法的B,则x+ai也合法
设bi为最小的x,满足x mod mn = i
求出每个bi就可以求答案了
bi用最短路求就好了啊 意会一下
最后枚举余数搞一下就算出答案了
代码好短啊2333

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N=500002;
inline LL read(){
    char ch=getchar(); LL x=0;
    while(ch<'0'||ch>'9') ch=getchar();
    while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+ch-'0'; ch=getchar();}
    return x;
}
struct g{
    LL w;int x;
    bool operator <(g a)const{return w>a.w;}
};
struct u{int y;LL c;int next;}a[12*N]; int len,first[N];
void ins(int x,int y,LL c){a[++len]=(u){y,c,first[x]},first[x]=len;}
int o[13]; LL d[N];
priority_queue<g>q;
int main()
{
    int n=read(),i,j,mn=1e6; LL b1=read(),b2=read();
    for(i=1;i<=n;i++)o[i]=read(),mn=o[i]<mn?o[i]:mn;
    for(i=1;i<mn;i++)d[i]=1e15;
    for(i=1;i<=n;i++)
        if(o[i]%mn){
            int _=o[i]%mn;
            for(j=0;j<mn;j++)ins(j,(j+_)%mn,o[i]);
        }
    q.push((g){0,0});
    while(!q.empty()){
        g r=q.top(); q.pop(); int x=r.x;
        if(r.w!=d[x])continue;
        for(int k=first[x];k;k=a[k].next){
            int y=a[k].y;
            if(d[y]>d[x]+a[k].c)q.push((g){d[y]=d[x]+a[k].c,y});
        }
    }
    LL ans=0;
    for(i=0;i<mn;i++)if(d[i]<=b2){
        LL l=max(0ll,(b1-d[i])/mn);
        if(l*mn+d[i]<b1)l++;
        LL r=(b2-d[i])/mn;
        ans+=r-l+1;
    }
    printf("%lld\n",ans);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值