我是靠谱客的博主 自然荷花,最近开发中收集的这篇文章主要介绍【UOJ244】 【UER #7】短路(贪心),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

传送门

uoj

Solution

简单题?
考虑一条路径长什么样子,一定是经过某一个字母环的左上角,那么答案就很简单了。
我们记一个前缀最小值,这样子让他一路走下去一定是最优!
然后扫一遍就好了。

代码实现

/*
  mail: mleautomaton@foxmail.com
  author: MLEAutoMaton
  This Code is made by MLEAutoMaton
*/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<algorithm>
#include<queue>
#include<set>
#include<map>
#include<iostream>
using namespace std;
#define ll long long
#define re register
#define file(a) freopen(a".in","r",stdin);freopen(a".out","w",stdout)
inline int gi()
{
    int f=1,sum=0;char ch=getchar();
    while(ch>'9' || ch<'0'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0' && ch<='9'){sum=(sum<<3)+(sum<<1)+ch-'0';ch=getchar();}
    return f*sum;
}
inline ll gl()
{
    ll f=1,sum=0;char ch=getchar();
    while(ch>'9' || ch<'0'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0' && ch<='9'){sum=(sum<<3)+(sum<<1)+ch-'0';ch=getchar();}
    return f*sum;
}
ll ans=1e18+10,Min=1e18+10;
ll a[400010],sum,n;
int main()
{
    n=gl()+1;
    for(int i=1;i<=n;i++)a[i]=gl();reverse(a+1,a+n+1);
    for(int i=1;i<=n;i++)
    {
        Min=min(Min,a[i]);
        ans=min(ans,a[i]*(4*(n-i)+1)+sum*2);
        sum+=a[i]+Min;
    }
    printf("%lldn",ans);
    return 0;
}

转载于:https://www.cnblogs.com/mleautomaton/p/10569266.html

最后

以上就是自然荷花为你收集整理的【UOJ244】 【UER #7】短路(贪心)的全部内容,希望文章能够帮你解决【UOJ244】 【UER #7】短路(贪心)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部