#include<iostream>#include<algorithm>usingnamespace std;constint maxn =100010, M =31* maxn;int ch[maxn];int n;int son[M][2], idx =0;int cnt[M];//M一定要这么大voidinsert(int x,int v){int p =0;for(int i =30;~i; i--){int u = x >> i &1;if(!son[p][u])son[p][u]=++idx;p = son[p][u];cnt[p]+= v;}}intsearch(int x){int p =0;int ret =0;for(int i =30;~i; i--){int u = x >> i &1;if(cnt[son[p][!u]]){ret = ret *2+1;p = son[p][!u];}else{ret = ret *2;p = son[p][u];}}return ret;}intmain(){int m;cin >> n >> m;for(int i =1; i <= n; i++){cin >> ch[i];ch[i]= ch[i]^ ch[i -1];}insert(ch[0],1);int res =0;for(int i =1; i <= n; i++){if(i > m)insert(ch[i - m -1],-1);res =max(res,search(ch[i]));insert(ch[i],1);}cout << res;}
B. Sifid and Strange Subsequences
A sequence (b1,b2,…,bk) is called strange, if the absolute difference between any pair of its elements is greater than or equal to the maximum element in the sequence. Formally speaking, it’s strange if for every pair (…
01背包问题 先上版子。
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn 1010;
int f[maxn][maxn];
int v[maxn],w[maxn];
int main()
{int n,V;cin>>n>>V;for (int i1;i<n;i){cin>>v[i]>>w[i];}for (i…
完全背包问题
#include <iostream>
#include <algorithm>
using namespace std;
const int maxn 1010;
int f[maxn];
int v[maxn], w[maxn];
int main()
{int n, V;cin >> n >> V;for (int i 1; i < n; i){cin >> v[i] >> w[i];}for…
多重背包问题 I
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn 10010;
int f[1001];
int main()
{int n,V;cin>>n>>V;for (int i0;i<n;i){int v,w,s;cin>>v>>w>>s;for (int jV;~j;j--){for (in…
① 直接让PHP程序memcache取数据 ② 如果memcache里面没有数据,则让其连接数据库,去数据库里面取数据 ③ 将取出的数据展示给用户的同时,再将数据缓存到memcache里面,并且可以指定一个缓存的时间,单位为秒。 ④ 如果之…
最大中位数 给定一个由 n 个整数组成的数组 a,其中 n 为奇数。
你可以对其进行以下操作:
选择数组中的一个元素(例如 ai),将其增加 1(即,将其替换为 ai1)。 你最多可以进行 k 次操…
分组背包问题
#include <iostream>
#include <algorithm>
using namespace std;
const int maxn 1000;
int w[maxn], v[maxn], f[maxn];
int main()
{int n, V;cin >> n >> V;for (int i 0; i < n; i){int m;cin >> m;for (int j 0; j &l…