APIO2015
还没有写完APIO2015的题目,打算今天写一写。
T1:
按位DP,DP时要保证已确定的位为0。
前4组设f[n][k]表示把前n个分成k组是否合法。
最后一组设g[n]表示把前n个最少分为多少组才符合题意。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cctype>
#define rep(i,s,t) for(int i=s;i<=t;i++)
#define ren for(int i=first[x];i!=-1;i=next[i])
using namespace std;
inline int read() {
int x=,f=;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-;
for(;isdigit(c);c=getchar()) x=x*+c-'';
return x*f;
}
const int maxn=;
typedef long long ll;
int n,A,B,f[][],g[maxn];
ll t,S[maxn];
int check(int x) {
if(A==) {
g[]=;
rep(i,,n) {
g[i]=<<;
rep(j,,i-) if(!((S[i]-S[j])&t)) g[i]=min(g[i],g[j]+);
}
return g[n]<=B;
}
memset(f,,sizeof(f));
f[][]=;
rep(i,,n) rep(k,,B) rep(j,,i-) if(!((S[i]-S[j])&t)&&f[j][k-]) f[i][k]=;
rep(i,A,B) if(f[n][i]) return ;
return ;
}
int main() {
n=read();A=read();B=read();
rep(i,,n) S[i]=S[i-]+read();
ll ans=;
for(int i=;i>=;i--) {
t^=(1ll<<i);
if(!check(i)) ans^=(1ll<<i),t^=(1ll<<i);
}
printf("%lld\n",ans);
return ;
}
T3:
k=1时排序求中位数。
k=2时设垮桥的所有两点坐标分别为x1i,x2i。设桥修在了p1,p2的位置,对于每对点(x1,x2),当(x1+x2)/2接近p1时肯定走p1,(x1+x2)/2接近p2时肯定走p2。故将所有点对按x1+x2升序排序,这样肯定存在一条分割线,使得分割线左侧的走左边一座桥,分割线右侧的走右边一座桥。这样我们实现一个可以支持插入和查询中位数的数据结构即可。Treap什么的就行了,但我DB地用了动态开节点的线段树。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cctype>
#define rep(s,t) for(int i=s;i<=t;i++)
#define ren for(int i=first[x];i!=-1;i=next[i])
using namespace std;
inline int read() {
int x=,f=;char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-;
for(;isdigit(c);c=getchar()) x=x*+c-'';
return x*f;
}
inline char getc() {
char c=getchar();
while(!isalpha(c)) c=getchar();
return c;
}
const int maxn=;
typedef long long ll;
struct Point {
int x1,x2;
bool operator < (const Point& ths) const {return x1+x2<ths.x1+ths.x2;}
}A[maxn];
int k,n,tmp[maxn];
ll ans,mn=(1ll<<),f[maxn],g[maxn],sumv[];
int ls[],rs[],s[],ToT,root;
void insert(int& o,int l,int r,int pos) {
if(!o) o=++ToT,s[o]=ls[o]=rs[o]=sumv[o]=;
s[o]++;sumv[o]+=pos;if(l==r) return;
int mid=l+r>>;
if(pos<=mid) insert(ls[o],l,mid,pos);
else insert(rs[o],mid+,r,pos);
}
int kth(int o,int l,int r,int k) {
if(l==r) return l;
int k2=s[ls[o]],mid=l+r>>;
if(k2>=k) return kth(ls[o],l,mid,k);
return kth(rs[o],mid+,r,k-k2);
}
ll tot,sum;
void query(int o,int l,int r,int ql,int qr) {
if(!o) return;
if(ql<=l&&r<=qr) {
tot+=s[o];sum+=sumv[o];
return;
}
int mid=l+r>>;
if(ql<=mid) query(ls[o],l,mid,ql,qr);
if(qr>mid) query(rs[o],mid+,r,ql,qr);
}
ll query(int o) {
if(!o) return ;
int v=kth(o,,,s[o]/);
ll ret=;
tot=sum=;query(o,,,,v);ret+=tot*v-sum;
tot=sum=;query(o,,,v,);ret-=tot*v-sum;
return ret;
}
int main() {
k=read();n=read();int t=;
rep(,n) {
char t1,t2;int x1,x2;
t1=getc();x1=read();t2=getc();x2=read();
if(t1==t2) ans+=abs(x1-x2);
else A[++t]=(Point){x1,x2};
}
n=t;sort(A+,A+n+);ans+=n;
if(k==) {
t=;
rep(,n) tmp[t++]=A[i].x1,tmp[t++]=A[i].x2;
sort(tmp,tmp+t);
rep(,t-) ans+=abs(tmp[t/]-tmp[i]);
printf("%lld\n",ans);
return ;
}
ToT=root=;
rep(,n) {
insert(root,,,A[i].x1);insert(root,,,A[i].x2);
f[i]=query(root);
}
ToT=root=;
for(int i=n;i;i--) {
g[i]=query(root);
insert(root,,,A[i].x1);insert(root,,,A[i].x2);
}
rep(,n) mn=min(mn,f[i]+g[i]);if(!n) mn=;
printf("%lld\n",ans+mn);
return ;
}
APIO2015的更多相关文章
- APIO2015题解
分组赛讲课讲了APIO2015的题,于是回去就做完了 稍微写一点题解吧 bzoj4069 逐位处理的简单题,然后就是bool型dp 然后a=1 的时候可以把一位状态干掉 当一维状态单调且是bool型d ...
- bzoj千题计划239:bzoj4069: [Apio2015]巴厘岛的雕塑
http://www.lydsy.com/JudgeOnline/problem.php?id=4069 a!=1: 从高位到低位一位一位的算 记录下哪些位必须为0 dp[i][j] 表示前i个数分为 ...
- [APIO2015]巴厘岛的雕塑 --- 贪心 + 枚举
[APIO2015]巴厘岛的雕塑 题目描述 印尼巴厘岛的公路上有许多的雕塑,我们来关注它的一条主干道. 在这条主干道上一共有\(N\)座雕塑,为方便起见,我们把这些雕塑从 1 到\(N\)连续地进行 ...
- 【BZOJ4071】[Apio2015]巴邻旁之桥 Treap
[BZOJ4071][Apio2015]巴邻旁之桥 Description 一条东西走向的穆西河将巴邻旁市一分为二,分割成了区域 A 和区域 B. 每一块区域沿着河岸都建了恰好 1000000001 ...
- 洛谷 P3644 [APIO2015]八邻旁之桥 解题报告
P3644 [APIO2015]八邻旁之桥 题目描述 一条东西走向的穆西河将巴邻旁市一分为二,分割成了区域\(A\)和区域\(B\). 每一块区域沿着河岸都建了恰好\(1000000001\)栋的建筑 ...
- bzoj 4070 [Apio2015]雅加达的摩天楼 Dijkstra+建图
[Apio2015]雅加达的摩天楼 Time Limit: 10 Sec Memory Limit: 256 MBSubmit: 644 Solved: 238[Submit][Status][D ...
- bzoj 4069 [Apio2015]巴厘岛的雕塑 dp
[Apio2015]巴厘岛的雕塑 Time Limit: 10 Sec Memory Limit: 64 MBSubmit: 494 Solved: 238[Submit][Status][Dis ...
- uoj #111. 【APIO2015】Jakarta Skyscrapers
#111. [APIO2015]Jakarta Skyscrapers 印尼首都雅加达市有 NN 座摩天楼,它们排列成一条直线,我们从左到右依次将它们编号为 00 到 N−1N−1.除了这 NN 座摩 ...
- bzoj4069【APIO2015】巴厘岛的雕塑
4069: [Apio2015]巴厘岛的雕塑 Time Limit: 10 Sec Memory Limit: 64 MB Submit: 192 Solved: 89 [Submit][Stat ...
随机推荐
- Linux 怎么重命名多个文件
下面是重命名命令的基本语法. rename [-v -n -f] <pcre> <files> <pcre> 是Perl兼容正则表达式,它表示的是要重命名的文件和该 ...
- Python配合BeautifulSoup读取网络图片并保存在本地
本例为Python配合BeautifulSoup读取网络图片,并保存在本地. BeautifulSoup可代替正则表达式,更好地解析Html文本,获取其中的指定内容,如Tag.Property等 # ...
- pro git 使用积累
http://www.zhihu.com/question/20070065 git相关问题的收集 Git 是 Linux 之父 Linus Trovalds,为管理 Linux 内核代码而建立的,被 ...
- 《转》.NET开源核心运行时,且行且珍惜
转载自infoQ 背景 InfoQ中文站此前报道过,2014年11月12日,ASP.NET之父.微软云计算与企业级产品工程部执行副总裁Scott Guthrie,在Connect全球开发者在线会议上宣 ...
- css排版
先介绍如何设定字体.颜色.大小.段落空白等比较简单的应用,后面再介绍下比如首字下沉.首行缩进.最后讲一些常用的web页面中文排版,比如中文字的截断.固定宽度词内折行(word-wrap和word-br ...
- 让Delphi的DataSnap发挥最大效率
让Delphi的DataSnap发挥最大效率 让Delphi的DataSnap发挥最大效率 一个DataSnap的应用程序由两个层组成: DataSnap服务器,它有一个带有一个或者更多DataSet ...
- 【JAVA、C++】LeetCode 004 Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two ...
- elk平台分析nginx日志的基本搭建
一.elk套件介绍 ELK 由 ElasticSearch . Logstash 和 Kiabana 三个开源工具组成.官方网站: https://www.elastic.co/products El ...
- PHP--TP框架----把查询到的数据,显示在模型(模板)里面
MainController.class.php <?php namespace Home\Controller; use Think\Controller; class MainControl ...
- August 6th, 2016, Week 32nd, Saturday
It is not the mountain we conquer, but ourselvess. 我们征服的不是高山,而是我们自己. Difficulties and obstacles, jus ...