莫队
吴俊达9812
这个作者很懒,什么都没留下…
展开
-
计蒜客周赛第二场——凉菜鸡不会线段树
题意:https://nanti.jisuanke.com/t/38087?tdsourcetag=s_pcqq_aiomsg 思路:Trie解决XOR问题(这跟线段树有什么关系。。。) 莫队暴力一发,好久不写trie了。。。 #include <bits/stdc++.h> using namespace std; typedef long long ...原创 2019-05-01 11:48:54 · 154 阅读 · 0 评论 -
hdu 6610 Game
题意:带修改地维护区间异或和 思路:带修改莫队(注意分块大小为 0.66666n) #include <bits/stdc++.h> using namespace std; typedef int lint; typedef long long LL; const lint maxn = 1000005; lint a[maxn],pos[maxn],sum[maxn]; L...原创 2019-08-05 20:42:52 · 268 阅读 · 0 评论