博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Uva10635 Prince and Princess
阅读量:5241 次
发布时间:2019-06-14

本文共 1536 字,大约阅读时间需要 5 分钟。

题目

这题如果用\(f_{i,j}\)这样dp的话肯定过不了,必须另辟蹊径。题目说了数字不重复。我们先只留下两个数组共有的数字。然后我们处理出这样一个数组\(S\)\(S_i\)表示\(A_i\)这个元素在\(B\)中的下标,然后模型转换就成为了求\(S\)中最长上升子序列了,这个\(O(NlogN)\)的求法大家应该都会。这里我写的是树状数组版本的。

#include
#include
#include
using namespace std;#define lowbit(x) (x&-x)const int maxn = 250*250+10;int pos[maxn],S[maxn],T,tree[maxn],N,P,Q,cnt,ans;inline void ins(int a,int b) { for (;a <= N*N;a += lowbit(a)) tree[a] = max(tree[a],b); }inline int calc(int a) { int ret = 0; for (;a;a -= lowbit(a)) ret = max(ret,tree[a]); return ret; }inline int read(){ int ret = 0,f = 1; char ch; do ch = getchar(); while (!(ch >= '0'&&ch <= '9')&&ch != '-'); if (ch == '-') ch = getchar(),f = -1; do ret = ret*10+ch-'0',ch = getchar(); while (ch >= '0'&&ch <= '9'); return ret*f;}int main(){ freopen("10635.in","r",stdin); freopen("10635.out","w",stdout); scanf("%d",&T); for (int Case = 1;Case <= T;++Case) { printf("Case %d: ",Case); N = read(); P = read()+1; Q = read()+1; cnt = ans = 0; for (int i = 1;i <= N*N;++i) pos[i] = tree[i] = 0; for (int i = 1;i <= P;++i) pos[read()] = i; for (int i = 1,b;i <= Q;++i) { b = read(); if (pos[b]) S[++cnt] = pos[b]; } for (int i = 1;i <= cnt;++i) { int f = calc(S[i]-1)+1; ans = max(ans,f); ins(S[i],f); } printf("%d\n",ans); } fclose(stdin); fclose(stdout); return 0;}

转载于:https://www.cnblogs.com/mmlz/p/6345463.html

你可能感兴趣的文章
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
网络时间获取
查看>>
多线程实现资源共享的问题学习与总结
查看>>
Code as IaaS for Azure : Terraform 初步
查看>>
WebFrom 小程序【分页功能 】
查看>>
Learning-Python【26】:反射及内置方法
查看>>
day7--面向对象进阶(内含反射和item系列)
查看>>
Python深入01 特殊方法与多范式
查看>>
torch教程[1]用numpy实现三层全连接神经网络
查看>>
java实现哈弗曼树
查看>>
转:Web 测试的创作与调试技术
查看>>
转:apache 的mod-status
查看>>
转:基于InfluxDB&Grafana的JMeter实时性能测试数据的监控和展示
查看>>
结对编程博客
查看>>
Kendo MVVM 数据绑定(四) Disabled/Enabled
查看>>
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
C++11 生产者消费者
查看>>
IO multiplexing 与 非阻塞网络编程
查看>>