首页 > 其他分享 >[ABC150F] Xor Shift

[ABC150F] Xor Shift

时间:2024-10-02 10:49:24浏览次数:4  
标签:Xor ABC150F int Shift back str oplus include mod

题意

给定两个序列 \(a, b\),求将 \(b\) 循环移位 \(k\) 位,再给所有 \(b_i \oplus x\),求所有满足条件的 \((k, x)\)。

\(n \le 2 \times 10 ^ 5\)。

Sol

对于区间异或,容易想到差分。

考虑对 \(a\) 和 \(b\) 分别差分,注意到差分后 \(x\) 直接消失了!

也就是:

  • \(a_0 \oplus a_1 = b_{(0 + k) \mod n} \oplus b_{(1 + k) \mod n}\)
  • \(a_1 \oplus a_2 = b_{(1 + k) \mod n} \oplus b_{(2 + k) \mod n}\)
  • \(a_2 \oplus a_3 = b_{(2 + k) \mod n} \oplus b_{(3 + k) \mod n}\)
  • \(...\)
  • \(a_{n - 1} \oplus a_0 = b_{(n - 1 + k) \mod n} \oplus b_{0} \mod n\)

容易发现映射后的条件的必要性显然,而充分性的条件刚好是 \(x\) 的取值范围。

于是原问题变为字符串匹配模板,直接 \(\texttt{kmp}\) 即可。

Code

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <array>
#include <vector>
#define pii pair <int, int>
using namespace std;
#ifdef ONLINE_JUDGE

#define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 21, stdin), p1 == p2) ? EOF : *p1++)
char buf[1 << 23], *p1 = buf, *p2 = buf, ubuf[1 << 23], *u = ubuf;

#endif
int read() {
    int p = 0, flg = 1;
    char c = getchar();
    while (c < '0' || c > '9') {
        if (c == '-') flg = -1;
        c = getchar();
    }
    while (c >= '0' && c <= '9') {
        p = p * 10 + c - '0';
        c = getchar();
    }
    return p * flg;
}
void write(int x) {
    if (x < 0) {
        x = -x;
        putchar('-');
    }
    if (x > 9) {
        write(x / 10);
    }
    putchar(x % 10 + '0');
}
bool _stmer;

#define fi first
#define se second

const int N = 2e5 + 5, inf = 2e9;

namespace Kmp {

array <int, N * 3> isl;

void prefix(vector <int> s, int n) {
    for (int i = 2; i <= n; i++) {
        isl[i] = isl[i - 1];
        while (isl[i] && s[isl[i] + 1] != s[i]) isl[i] = isl[isl[i]];
        if (s[isl[i] + 1] == s[i]) isl[i]++;
    }
}

} //namespace Kmp

array <int, N> s, h;

bool _edmer;
int main() {
    cerr << (&_stmer - &_edmer) / 1024.0 / 1024.0 << "MB\n";
    int n = read();
    for (int i = 0; i < n; i++) s[i] = read();
    for (int i = 0; i < n; i++) h[i] = read();
    vector <int> str; str.push_back(inf);
    for (int i = 0; i < n; i++)
        str.push_back(s[i] ^ s[(i + 1) % n]);
    str.push_back(inf);
    for (int i = 0; i < 2 * n; i++)
        str.push_back(h[i % n] ^ h[(i + 1) % n]);
    Kmp::prefix(str, str.size() - 1);
    vector <pii> ans;
    for (int i = 2 * n + 1; i < (int)str.size() - 1; i++)
        if (Kmp::isl[i] == n)
            ans.push_back(make_pair((n - (i - n - 1) % n) % n, h[(i - n - 1) % n] ^ s[0]));
    sort(ans.begin(), ans.end());
    for (auto [x, y] : ans) {
        write(x), putchar(32);
        write(y), puts("");
    }
    return 0;
}

标签:Xor,ABC150F,int,Shift,back,str,oplus,include,mod
From: https://www.cnblogs.com/cxqghzj/p/18444492

相关文章

  • Sum of XOR Functions
    SumofXORFunctions题目有一个序列\(a\),计算:\[\sum\limits_{l=1}^{n}\sum\limits_{r=l}^n(r-l+1)\times\bigoplus\limits_{i=l}^{r}a_i\]思路位运算的题,我们对于每一位进行考虑,会发现构成了很多个\(0,1\)序列,则我们对于每一个序列考虑价值,求和即可。设\(b\)序列为这......
  • ShiftAddAug:基于乘法算子训练的最新无乘法网络方案 | CVPR'24
    不包含乘法的运算符,如移位和加法,因其与硬件的兼容性而日益受到重视。然而,采用这些运算符的神经网络(NNs)通常表现出比具有相同结构的传统NNs更低的准确性。ShiftAddAug利用成本较高的乘法来增强高效但功能较弱的无乘法运算符,从而在没有任何推理开销的情况下提高性能。将一个ShiftAd......
  • CF1207E XOR Guessing
    思路设答案为\(a\),第一次异或的数为\(b\),第二次异或的数为\(c\),则可以通过两次询问知道\(a\oplusb\)和\(a\oplusc\),所以\(b\oplusc=(a\oplusb)\oplus(a\oplusc)\)。因为范围为\([0,2^{14}-1]\),且每次询问只有\(100\)次,所以可以让第一次询问\(\{1,2,\cdots......
  • XOR 加密简介
    XOR加密简介作者: 阮一峰日期: 2017年5月31日本文介绍一种简单高效、非常安全的加密方法:XOR加密。一、XOR运算逻辑运算之中,除了 AND 和 OR,还有一种 XOR 运算,中文称为"异或运算"。它的定义是:两个值相同时,返回false,否则返回true。也就是说,XOR可以用来判断两个值......
  • CF1446C Xor Tree
    很有意思的题目,我们考虑能连边的两个数一定是在01-Trie上距离最近的两个点。于是我们先把所有数插入到01-Trie上去,然后\(dp_u\)考虑以\(u\)为根的子树中最多能留几个数,他的两个儿子内部的点只能在内部转移,你只能取一个儿子和另一个儿子的一个,也就是说我们的转移为\(dp_u......
  • 题解:CF888G Xor-MST
    题解:CF888GXor-MST题目大意:给定\(n\)个点的点权,任意两点间边权是点权的异或和。求这张完全图的MST的权值。思路:Boruvka+Trie树+按位贪心。关键就在于如何求出Boruvka中的best数组。考虑对点权建trie树,对于节点\(i\)本轮的连边,就是找“和它最相似”的那......
  • JS数组的shift/unshift pop/push
    前端数组里面的,shift头部删除,unshift 头部添加,pop尾部删除,push尾部添加头部删除:使用shift方法。这个方法会移除并返回数组的第一个元素,常用于实现队列的出队操作。示例代码:letqueue=[1,2,3];letfirstElement=queue.shift();//firstElement=1,queue=[......
  • Windows安装时调出系统的cmd功能 Shift+F10
    Windows安装时调出系统的cmd功能Shift+F10(笔记本可能是Shift+FN+F10)比如可以转换磁盘分区形式。 在Windows安装程序中同时按下【Shift+F10】键以打开命令提示符窗口,并按顺序输入以下命令。 diskpart listdisk(会显示磁盘列表) selectdisk1(1为要安装......
  • P10471 最大异或对 The XOR Largest Pair(01trie)
    #include<bits/stdc++.h>usingnamespacestd;#definexfirst#defineysecondtypedefpair<int,int>PII;typedeflonglongll;typedefunsignedlonglongull;typedefunsignedintuint;typedefvector<string>VS;typedefvector<int>......
  • CF1993E Xor-Grid Problem
    结论,异或,状压DP2300Link:https://codeforces.com/problemset/problem/1993/E。先考虑一维的情况。若只有一维,每次操作的结果和[AGC016D]XORReplace是一样的。对\(a_i\)进行一次操作相当于令\(a_i:=\oplus_{1\lei\len}a_i\),再对\(j\)进行一次操作相当于令\(a_j:=......