当前位置:网站首页>[ARC092B] Two Sequences
[ARC092B] Two Sequences
2022-07-30 13:40:00 【With a cool moon】
[ARC092B] Two Sequences
细节超多,Started not finding any data structure maintenance.
Consider a more violent approach.
Consider each answer individually,Let the current take into account the first i i i 位.
Calculate all numbers 2 i + 1 2^{i + 1} 2i+1 的余数,And sort in ascending order to satisfy monotonicity.(The remainder is discussed below)
若对于一个数 a a a,有数 b b b 满足 ( a + b ) m o d 2 i + 1 ≥ 2 i (a+b)\bmod 2^{i+1}\geq 2^i (a+b)mod2i+1≥2i,则 a , b a,b a,b The sum of the original numbers i i i 位为 1 1 1.
那么对于每个 a i a_i ai 分类讨论:
- 若 a i ≤ 2 i − 1 a_i \le 2^{i-1} ai≤2i−1,则答案在 [ 2 i − a , 2 i + 1 − a − 1 ] [2^i-a,2^{i+1}-a-1] [2i−a,2i+1−a−1] 范围内,Binary statistics can be counted.
- 否则即 a i > 2 i − 1 a_i>2^{i-1} ai>2i−1,则答案在 [ 0 , 2 i + 1 − a − 1 ] ∪ [ 2 i + 1 + 2 i − a , 2 i + 1 − 1 ] [0,2^{i+1}-a-1] \cup [2^{i+1}+2^i-a,2^{i+1}-1] [0,2i+1−a−1]∪[2i+1+2i−a,2i+1−1] 范围内,Binary statistics can be counted(The two intervals do not intersect).
It is enough to add contribution to the judgment of parity for the total number of each bit.
时间复杂度 O ( n log n log V ) \mathcal O(n\log n\log V) O(nlognlogV).
#include<bits/stdc++.h>
using namespace std;
#define int long long
typedef long long ll;
#define ha putchar(' ')
#define he putchar('\n')
inline int read()
{
int x = 0, f = 1;
char c = getchar();
while (c < '0' || c > '9')
{
if (c == '-')
f = -1;
c = getchar();
}
while (c >= '0' && c <= '9')
x = (x << 3) + (x << 1) + (c ^ 48), c = getchar();
return x * f;
}
inline void write(int x)
{
if(x < 0)
{
putchar('-');
x = -x;
}
if(x > 9)
write(x / 10);
putchar(x % 10 + 48);
}
const int _ = 2e5 + 10;
int n, a[_], b[_], c[_], d[_], ans;
signed main()
{
// a[1] = 1, a[2] = 2;
// cout << upper_bound(a + 1, a + 2 + 1, 3) - a;
n = read();
for(int i = 1; i <= n; ++i) a[i] = read();
for(int i = 1; i <= n; ++i) b[i] = read();
for(int x = 30; x >= 0; --x)
{
int nw = 1 << x, t = 0;
for(int i = 1; i <= n; ++i) c[i] = a[i] % (nw << 1);
for(int i = 1; i <= n; ++i) d[i] = b[i] % (nw << 1);
sort(c + 1, c + n + 1), sort(d + 1, d + n + 1);
for(int i = 1; i <= n; ++i)
{
if(c[i] <= nw)
{
// [2^i-a,2^{i+1}-a-1]
int ps1 = upper_bound(d + 1, d + n + 1, (nw << 1) - c[i] - 1) - d - 1;
int ps2 = lower_bound(d + 1, d + n + 1, nw - c[i]) - d - 1;
t += ps1 - ps2;
}
else
{
// [2^{i+1}+2^i-a,2^{i+1}-1]
// [0,2^{i+1}-a-1]
int ps1 = upper_bound(d + 1, d + n + 1, (nw << 1) - 1) - d - 1;
int ps2 = lower_bound(d + 1, d + n + 1, (nw << 1) + nw - c[i]) - d - 1;
t += ps1 - ps2;
ps1 = upper_bound(d + 1, d + n + 1, (nw << 1) - c[i] - 1) - d - 1;
ps2 = lower_bound(d + 1, d + n + 1, 0) - d - 1;
t += ps1 - ps2;
}
}
// cout << nw << ": " << t <<"\n";
if(t & 1) ans |= nw;
}
write(ans), he;
return 0;
}
/* */
边栏推荐
猜你喜欢
随机推荐
自动化测试的生命周期是什么?
R语言使用方差分析ANOVA比较回归模型的差异、anova函数比较两个模型并报告它们是否存在显著差异(两个模型的数据相同,一个模型使用的预测特征包含另外一个模型的特征)
grep时排除指定的文件和目录
【23考研】408代码题参考模板——顺序表
戴墨镜的卡通太阳SVG动画js特效
一本通循环结构的程序设计题解(2)
cpu / CS 和 IP
There is no one of the strongest kings in the surveillance world!
Study Notes - Becoming a Data Analyst in Seven Weeks "Week 2: Business": Business Analysis Metrics
jsArray array copy method performance test 2207300823
腾讯称电竞人才缺口200万;华为鸿蒙3.0正式发布;乐视推行每周工作4天半?...丨黑马头条...
BUUCTF刷题十一道(06)
[论文翻译] Unpaired Image-To-Image Translation Using Cycle-Consistent Adversarial Networks
(HR面试)最常见的面试问题和技巧性答复
Eleven BUUCTF questions (06)
20220729 证券、金融
js男女身高体重关系图
判断链表是否有环
CF603E Pastoral Oddities
R语言ggstatsplot包grouped_ggwithinstats函数可视化分组小提琴图、并添加假设检验结果(包含样本数、统计量、效应大小及其置信区间、显著性、组间两两比较、贝叶斯假设)








