F - Many Moves
F - Many Moves
Time limit : 2sec / Memory limit : 256MB
Score : 900 points
Problem Statement
There are N squares in a row. The squares are numbered 1,2,…,N from left to right.
You have two pieces, initially placed on square A and B, respectively. You will be asked to process Q queries of the following kind, in the order received:
- Given an integer xi, move one of the two pieces of your choice to square xi.
Here, it takes you one second to move a piece one square. That is, the time it takes to move a piece from square X to Y is |X−Y| seconds.
Your objective is to process all the queries in the shortest possible time.
You may only move the pieces in response to queries, and you may not move both pieces at the same time. Also, it is not allowed to rearrange the order in which queries are given. It is, however, allowed to have both pieces in the same square at the same time.
Constraints
- 1≤N,Q≤200,000
- 1≤A,B≤N
- 1≤xi≤N
Input
Input is given from Standard Input in the following format:
N Q A B
x1 x2 ... xQ
Output
Let the shortest possible time to process all the queries be X seconds. Print X.
Sample Input 1
8 3 1 8
3 5 1
Sample Output 1
7
All the queries can be processed in seven seconds, by:
- moving the piece at square 1 to 3
- moving the piece at square 8 to 5
- moving the piece at square 3 to 1
Sample Input 2
9 2 1 9
5 1
Sample Output 2
4
The piece at square 9 should be moved first.
Sample Input 3
9 2 1 9
5 9
Sample Output 3
4
The piece at square 1 should be moved first.
Sample Input 4
11 16 8 1
1 1 5 1 11 4 5 2 5 3 3 3 5 5 6 7
Sample Output 4
21
分析:考虑dp[i][j]表示当前在x[i],j位置;
设之前一步在a,b,当前到c,d,且a,c为上次和这次到达点;
那么有a->c或b->c;
若a->c,则dp[i][j]直接加上abs(x[i]-x[i-1]);
若b->c,则dp[i][a]取min{dp[i-1][j]+abs(j-x[i])};
而这两个都可以用线段树维护;
代码:
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <climits>
#include <cstring>
#include <string>
#include <set>
#include <bitset>
#include <map>
#include <queue>
#include <stack>
#include <vector>
#include <cassert>
#include <ctime>
#define rep(i,m,n) for(i=m;i<=n;i++)
#define mod 1000000009
#define inf 0x3f3f3f3f
#define vi vector<int>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ll long long
#define pi acos(-1.0)
#define pii pair<int,int>
#define sys system("pause")
#define ls rt<<1
#define rs rt<<1|1
const int maxn=2e5+;
const int N=2e5+;
using namespace std;
int id(int l,int r){return l+r|l!=r;}
ll gcd(ll p,ll q){return q==?p:gcd(q,p%q);}
ll qpow(ll p,ll q){ll f=;while(q){if(q&)f=f*p%mod;p=p*p%mod;q>>=;}return f;}
int n,m,k,t,q,a,b;
ll tag[maxn<<],mi[maxn<<],mi1[maxn<<],mi2[maxn<<];
void pup(int rt)
{
mi[rt]=min(mi[ls],mi[rs]);
mi1[rt]=min(mi1[ls],mi1[rs]);
mi2[rt]=min(mi2[ls],mi2[rs]);
tag[rt]=;
}
void pdw(int rt)
{
mi[ls]+=tag[rt];
mi1[ls]+=tag[rt];
mi2[ls]+=tag[rt];
tag[ls]+=tag[rt];
mi[rs]+=tag[rt];
mi1[rs]+=tag[rt];
mi2[rs]+=tag[rt];
tag[rs]+=tag[rt];
tag[rt]=;
}
void build(int l,int r,int rt)
{
if(l==r)
{
mi[rt]=mi1[rt]=mi2[rt]=1e18;
tag[rt]=;
return;
}
int mid=l+r>>;
build(l,mid,ls);
build(mid+,r,rs);
pup(rt);
}
void add(int L,int R,ll v,int l,int r,int rt)
{
if(L==l&&R==r)
{
mi[rt]+=v;
mi1[rt]+=v;
mi2[rt]+=v;
tag[rt]+=v;
return;
}
int mid=l+r>>;
if(tag[rt])pdw(rt);
if(R<=mid)add(L,R,v,l,mid,ls);
else if(L>mid)add(L,R,v,mid+,r,rs);
else
{
add(L,mid,v,l,mid,ls);
add(mid+,R,v,mid+,r,rs);
}
pup(rt);
}
void upd(int pos,ll v,int l,int r,int rt)
{
if(l==pos&&pos==r)
{
if(mi[rt]>v)
{
mi[rt]=v;
mi1[rt]=v-pos;
mi2[rt]=v+pos;
}
return;
}
int mid=l+r>>;
if(tag[rt])pdw(rt);
if(pos<=mid)upd(pos,v,l,mid,ls);
else upd(pos,v,mid+,r,rs);
pup(rt);
}
ll gao(int L,int R,int l,int r,int rt,ll *mi)
{
if(L==l&&R==r)return mi[rt];
int mid=l+r>>;
if(tag[rt])pdw(rt);
if(R<=mid)return gao(L,R,l,mid,ls,mi);
else if(L>mid)return gao(L,R,mid+,r,rs,mi);
else return min(gao(L,mid,l,mid,ls,mi),gao(mid+,R,mid+,r,rs,mi));
}
int main()
{
int i,j;
scanf("%d%d%d%d",&n,&q,&a,&b);
build(,n,);
upd(b,,,n,);
int pre=a;
rep(i,,q)
{
int x;
scanf("%d",&x);
ll cost1=gao(,x,,n,,mi1)+x;
ll cost2=gao(x,n,,n,,mi2)-x;
ll now=min(cost1,cost2);
add(,n,abs(x-pre),,n,);
upd(pre,now,,n,);
pre=x;
}
printf("%lld\n",gao(,n,,n,,mi));
return ;
}
F - Many Moves的更多相关文章
- arc073 F many moves(dp + 线段树)
设dp[i][y]表示一个点在x[i],另一个点在y时最小要走的步数 那么有以下转移 对于y != x[i-1]的状态,可以证明,他们直接加|x[i] - x[i-1]|即可(如果有其他方案,不符合对 ...
- Scalaz(23)- 泛函数据结构: Zipper-游标定位
外面沙尘滚滚一直向北去了,意识到年关到了,码农们都回乡过年去了,而我却留在这里玩弄“拉链”.不要想歪了,我说的不是裤裆拉链而是scalaz Zipper,一种泛函数据结构游标(cursor).在函数式 ...
- AtCoder瞎做第二弹
ARC 067 F - Yakiniku Restaurants 题意 \(n\) 家饭店,\(m\) 张餐票,第 \(i\) 家和第 \(i+1\) 家饭店之间的距离是 \(A_i\) ,在第 \( ...
- 【AtCoder】ARC073
ARC 073 C - Sentou 直接线段覆盖即可 #include <bits/stdc++.h> #define fi first #define se second #defin ...
- Mysql_以案例为基准之查询
查询数据操作
- 2016 ccpc 网络选拔赛 F. Robots
Robots Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Subm ...
- [Educational Codeforces Round 16]A. King Moves
[Educational Codeforces Round 16]A. King Moves 试题描述 The only king stands on the standard chess board ...
- UVA 439 Knight Moves
// 题意:输入标准国际象棋棋盘上的两个格子,求马最少需要多少步从起点跳到终点 BFS求最短路: bfs并维护距离状态cnt, vis记录是否访问过 #include<cstdio> ...
- POJ 2243 Knight Moves
Knight Moves Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 13222 Accepted: 7418 Des ...
随机推荐
- codeforces 949B A Leapfrog in the Array
B. A Leapfrog in the Array time limit per test 2 seconds memory limit per test 512 megabytes input s ...
- sql数据库CHECKDB时报x个分配错误和x个一致性错误
--1.在SQL查询分析器中执行以下语句:(注以下所用的POS为数据库名称,请用户手工改为自己的数据库名) use pos dbcc checkdb --2.查看查询结果,有很多红色字体显示,最后结果 ...
- [App Store Connect帮助]三、管理 App 和版本(2.4)输入 App 信息:提供加密出口合规证明文稿
上传至 App Store Connect 的 App 被上传至位于美国的 Apple 服务器.如果您提交 App 的目的是为了在 App Store 上分发您的 App 或通过美国或加拿大的境外 T ...
- zoj3675 BFS+状态压缩
#include <stdio.h> #include <string.h> #include <queue> using namespace std; int n ...
- php 获取客户端的真实ip地址 通过第三方网站
<?php include 'simple_html_dom.php'; // 1获取真实IP地址方式 function get_onlineip() { $ch = curl_init('ht ...
- hbuilder中的 http://www.w3.org/TR/html4/frameset.dtd
<!-- This is the HTML 4.01 Frameset DTD, which should be used for documents with frames. This DTD ...
- debug时红点消失
问题描述:debug时红色断点和黄色小箭头不见,而用行代码高亮的形式时. 解决办法:可以用设置 工具 => 选项 => 文本编辑器 => 指示器边距 勾上选项
- jQuery导航插件One-Page-Nav演示-显示命名锚记
jQuery导航插件One-Page-Nav演示-显示命名锚记 简介 使用 选项 示例 推荐 简介 电商网站的分类比较明确,比如1楼是手机通讯产品,2楼是家用电器,3楼是服装鞋包等等,旁边还会有一个固 ...
- MVC5+EasyUI+EF6+Linq通用权限系统出炉(1)
1.先晒一下结构吧,
- CNN结构:HSV中的饱和度解析
参考:颜色的前世今生-饱和度 详解,划重点- 关键这个"纯"是指什么? 是指颜色明亮么?明度高的颜色看起来也明亮啊,不一定纯度高啊- 是说颜色鲜艳么?颜色 "不鲜艳&qu ...