2 seconds
512 megabytes
standard input
standard output
For an array bb of length mm we define the function ff as
f(b)={b[1]if m=1f(b[1]⊕b[2],b[2]⊕b[3],…,b[m−1]⊕b[m])otherwise,f(b)={b[1]if m=1f(b[1]⊕b[2],b[2]⊕b[3],…,b[m−1]⊕b[m])otherwise,
where ⊕⊕ is bitwise exclusive OR.
For example, f(1,2,4,8)=f(1⊕2,2⊕4,4⊕8)=f(3,6,12)=f(3⊕6,6⊕12)=f(5,10)=f(5⊕10)=f(15)=15f(1,2,4,8)=f(1⊕2,2⊕4,4⊕8)=f(3,6,12)=f(3⊕6,6⊕12)=f(5,10)=f(5⊕10)=f(15)=15
You are given an array aa and a few queries. Each query is represented as two integers ll and rr. The answer is the maximum value of ffon all continuous subsegments of the array al,al+1,…,aral,al+1,…,ar.
The first line contains a single integer nn (1≤n≤50001≤n≤5000) — the length of aa.
The second line contains nn integers a1,a2,…,ana1,a2,…,an (0≤ai≤230−10≤ai≤230−1) — the elements of the array.
The third line contains a single integer qq (1≤q≤1000001≤q≤100000) — the number of queries.
Each of the next qq lines contains a query represented as two integers ll, rr (1≤l≤r≤n1≤l≤r≤n).
Print qq lines — the answers for the queries.
3
8 4 1
2
2 3
1 2
5
12
6
1 2 4 8 16 32
4
1 6
2 5
3 4
1 2
60
30
12
3
In first sample in both queries the maximum value of the function is reached on the subsegment that is equal to the whole segment.
In second sample, optimal segment for first query are [3,6][3,6], for second query — [2,5][2,5], for third — [3,4][3,4], for fourth — [1,2][1,2].
这题就是在异或操作下的区间最大值。
n《=5000 可以用区间DP做。
dp[i][j] 表示长度为i 起始点是j 的区间最大值。
1 #include<bits/stdc++.h> 2 using namespace std; 3 4 typedef long long LL ; 5 const int maxn = 5e3 + 7; 6 int dp[maxn][maxn]; 7 8 int main() { 9 int n; 10 scanf("%d", &n ); 11 for (int i = 1 ; i <= n ; i++) 12 scanf("%d", &dp[1][i]); 13 for (int i = 2 ; i <= n ; i++ ) 14 for (int j = 1 ; j <= n - i + 1 ; j++) 15 dp[i][j] = dp[i - 1][j] ^ dp[i - 1][j + 1]; 16 for (int i = 2 ; i <= n ; i++) 17 for (int j = 1 ; j <= n - i + 1 ; j++) 18 dp[i][j] = max(dp[i][j], max(dp[i - 1][j], dp[i - 1][j + 1])); 19 int q; 20 scanf("%d", &q); 21 while(q--) { 22 int x, y; 23 scanf("%d%d", &x, &y); 24 int len = y - x + 1; 25 printf("%d\n", dp[len][x]); 26 } 27 return 0; 28 }
写这篇博文主要是为了归纳总结一下dp的有关问题(不定期更新,暑假应该会更的快一些) 会大概讲一下思路,不会事无 […]...
After several latest reforms many tourists are planning […]...
LCP 19.秋叶收藏集 题目链接 算法 动态规划 时间复杂度O(n) 1.题目要求最终形成[红、黄、红]三部 […]...
LeetCode 279. Perfect Squres DP 是笨办法中的高效办法,又是一道可以被好办法打败 […]...
题目描述 01背包问题 有n个重量和价值分别为$w_i,v_i$的物品。从这些物品中挑选出总重量不超过W的物品 […]...
题面描述 【题目描述】 最近XX公司举办了一个奇怪的比赛:鸡蛋硬度之王争霸赛。参赛者是来自世界各地的母鸡,比赛 […]...
题目 有一颗N个节点的树,其中1号节点是整棵树的根节点,而对于第ii个点(2≤i≤N),其父节点为PiPi 对 […]...
【js】Leetcode每日一题-停在原地的方案数 【题目描述】 有一个长度为 arrLen 的数组,开始有一 […]...
一:简介 1.Squid:优化Web交付 Squid是支持HTTP,HTTPS,FTP等的Web的缓存代理。它 […]...
版权声明:本文为本文为博主原创文章,转载请注明出处。如有问题,欢迎指正。博客地址:https://www.cn […]...
有些刚开始进行CAD制图初学入门学习的小伙伴在使用浩辰CAD建筑软件绘制图纸的过程中,由于对CAD软件了解不够 […]...
昨天听同事分享了Gulp的一些简单使用,决定自己也试一试。 一、安装 gulp是基于nodejs的,所以要 […]...
我们经常会遇到一些场景,需要你向别人展示一些操作或是效果——例如告诉别人某某软件的配置步骤啊、刚设计出来网站的 […]...
f12下载音乐 小编在之前的文章中介绍了在线视频下载的万能方法,今天接着介绍在线音乐万能下载方法 今天要用到的 […]...
万物有开始就有结束。而如今 PHP 也步入了暮年。在这个时代,长盛不衰的唯一方法就是无可取代。一门技术如非必不可少,就会被慢慢遗忘。PHP不仅可有可无,而且会加剧开发工作的复杂性。与之相比,许多现代语言的表现更为出众。这些现代语言没有 PH...
液晶显示屏中,1602型算是比较简单的一种,据说和12864还是全兼容的。这两天学习的结果如下。一、1602里 […]...
Powered By WordPress