`
A.myc
  • 浏览: 485 次
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

uva11285 uvalive3983 Hackers' Crackdown

    博客分类:
  • ACM
阅读更多
uva11285 uvalive3983 Hackers' Crackdown
// AC
// A.myc
#include<iostream>
#include<cmath>
#include<stdio.h>
#include<string.h>
using namespace std;
const int maxn=100005;
struct dpnode{
	int idx;
	int val;
};
dpnode queue[maxn];
int head,tail;
int dp[maxn];
int s[maxn];
int d[maxn];
int w[maxn];
int c,n;
void Dp(){
	head=tail=0;
	memset(dp,-1,sizeof(dp));
	dp[0]=0; dp[1]=2*d[1];
	queue[tail].idx=0; queue[tail++].val=dp[0];
	queue[tail].idx=1; queue[tail++].val=dp[1]; // ##
	for(int i=2;i<=n;i++){
		while((w[i]-w[queue[head].idx])>c) head++; // ##
		for(int j=head;queue[j].idx<i && j!=tail;j++){
			if(w[i]-w[queue[j].idx]<=c && (dp[i]==-1 || (dp[queue[j].idx]+d[queue[j].idx+1]+s[i]-s[queue[j].idx+1]+d[i])<dp[i])){
				dp[i]=(dp[queue[j].idx]+d[queue[j].idx+1]+s[i]-s[queue[j].idx+1]+d[i]);
			}
		}
		while(i<n && (dp[i]+d[i+1]-s[i+1])<(queue[tail-1].val+d[queue[tail-1].idx+1]-s[queue[tail-1].idx+1]) && tail>head) tail--;
		queue[tail].idx=i; queue[tail++].val=dp[i];
	}
}
int main(){
	int T;
	scanf("%d",&T);
	while(T--){
		scanf("%d%d",&c,&n);
		int x0=0,y0=0; s[0]=0; w[0]=0;
		for(int i=1;i<=n;i++){
			int x,y;
			scanf("%d%d%d",&x,&y,&w[i]);
			d[i]=x+y; s[i]=s[i-1]+abs((double)x-x0)+abs((double)y-y0);
			w[i]+=w[i-1];
			x0=x,y0=y;
		}
		Dp();
		printf("%d\n",dp[n]);
		if(T>0) printf("\n"); // ##
	}
	return 0;
}

 

分享到:
评论

相关推荐

    Hackers delight 2nd edition

    《Hackers Delight 2nd edition》是一本专注于计算机编程的书籍,特别是那些针对底层系统编程和硬件交互方面的内容。作者是Henry S.Warren, Jr.,这本书是该系列的第二版。书籍的标题《Hackers Delight》暗示了它为...

    Linux Basics for Hackers 中文版

    Linux Basics for Hackers 中文版

    Hackers and Painters

    《Hackers and Painters》是Paul Graham所著的一本极具影响力的书籍,主要探讨了计算机科学家(黑客)与艺术家(画家)之间的共性以及创新思维在技术领域的应用。书中的内容涵盖了编程艺术、互联网创业、语言设计等...

    Machine Learning for Hackers 无水印pdf

    Machine Learning for Hackers 英文无水印pdf pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者...

    Hackers-manual-2019.pdf

    Linux Hackers-manual 2019 version. Advance your Linux skills

    Hackers Delight(高效编程的奥秘)英文chm版

    &lt;Hackers Delight&gt; 中文名《高效编程的奥秘》chm 英文版 为什么? if(x ==a) x = b; else x = a; 可以用 x = a^b^x;替换 看看这本书吧,值得精读.

    Linux Basics for Hackers (AZW3)

    Linux Basics for Hackers: Getting Started with Networking, Scripting, and Security in Kali (AZW3)

    Bayesian Methods for Hackers

    《Bayesian Methods for Hackers》是一本面向程序员和数据爱好者的概率编程与贝叶斯方法教程。这本书通过Python编程语言和IPython Notebook(现在称为Jupyter Notebook)来讲解复杂的统计概念,使读者能够轻松地理解...

    Hackers.and.Painters.May.2010(完美版).pdf

    英文版Hackers.and.Painters.May.2010(完美版).pdf

    Wiley.The.Oracle.Hackers.Handbook.Jan.2007.chm

    Wiley.The.Oracle.Hackers.Handbook.Jan.2007.chm

    Linux Basics for Hackers_ Getting Started

    从文件中提供的信息可以了解到,《Linux Basics for Hackers: Getting Started with Networking, Scripting, and Security in Kali》是OccupyTheWeb撰写的一本关于Linux基本知识的书籍,这本书专门针对想要利用Kali ...

    Python Programming for Hackers and Pentesters

    Python is the high-level language of choice for hackers and software security analysts because it makes it easy to write powerful and effective security tools. A follow-up to the perennial best-seller...

    Machine Learning for Hackers(中英文)

    Machine Learning for Hackers (中文译名:机器学习-实用案例解析)通过实例讲解机器学习算法,用R实现的,可以一边学习机器学习一边学习R。 是实操型的书,重点放在讲怎么用R做数据挖掘,机器学习的算法更多的是...

    JavaScript for Hackers.pdf

    JavaScript for Hackers 是一本专注于网络安全渗透测试的PDF文档,它主要介绍了如何利用JavaScript技术进行渗透测试。这本书的内容可能源自PenTest Academy和其他网络安全专家的贡献,同时也引用了多个在线课程、...

    Hackers Beware The Ultimate Guide to Network Security

    Hackers Beware The Ultimate Guide to Network Security.pdf

Global site tag (gtag.js) - Google Analytics