Submission #9414606


Source Code Expand

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
//#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
template<int MOD> struct ModInt {
	static const int Mod = MOD; unsigned x; ModInt() : x(0) { }
	ModInt(signed sig) { x = sig < 0 ? sig % MOD + MOD : sig % MOD; }
	ModInt(signed long long sig) { x = sig < 0 ? sig % MOD + MOD : sig % MOD; }
	int get() const { return (int)x; }
	ModInt& operator+=(ModInt that) { if ((x += that.x) >= MOD) x -= MOD; return *this; }
	ModInt& operator-=(ModInt that) { if ((x += MOD - that.x) >= MOD) x -= MOD; return *this; }
	ModInt& operator*=(ModInt that) { x = (unsigned long long)x * that.x % MOD; return *this; }
	ModInt& operator/=(ModInt that) { return *this *= that.inverse(); }
	ModInt operator+(ModInt that) const { return ModInt(*this) += that; }
	ModInt operator-(ModInt that) const { return ModInt(*this) -= that; }
	ModInt operator*(ModInt that) const { return ModInt(*this) *= that; }
	ModInt operator/(ModInt that) const { return ModInt(*this) /= that; }
	ModInt inverse() const {
		long long a = x, b = MOD, u = 1, v = 0;
		while (b) { long long t = a / b; a -= t * b; std::swap(a, b); u -= t * v; std::swap(u, v); }
		return ModInt(u);
	}
	bool operator==(ModInt that) const { return x == that.x; }
	bool operator!=(ModInt that) const { return x != that.x; }
	ModInt operator-() const { ModInt t; t.x = x == 0 ? 0 : Mod - x; return t; }
};
template<int MOD> ModInt<MOD> operator^(ModInt<MOD> a, unsigned long long k) {
	ModInt<MOD> r = 1; while (k) { if (k & 1) r *= a; a *= a; k >>= 1; } return r;
}
int getrandmax() {
	static uint32_t y = time(NULL);
	y ^= (y << 13); y ^= (y >> 17);
	y ^= (y << 5);
	return abs((int)y);
}
int getrand(int l, int r) { // [l, r]
	return getrandmax() % (r - l + 1) + l;
}
typedef ModInt<1000000007> mint1;
typedef ModInt<1000000009> mint2;
int primes[10] = { 10007, 10009, 10037, 10039, 10061, 10067, 10069, 10079, 10091, 10093 };
bool isShuffle = false;
struct RollingHash {
	mint1 p1; mint2 p2;
	int n;
	vector<mint1> m1; vector<mint2> m2;
	vector<mint1> v1; vector<mint2> v2;

	RollingHash() {
		if (!isShuffle) {
			rep(i, 0, 101) { int a = getrand(0, 9); int b = getrand(0, 9); swap(primes[a], primes[b]); }
			isShuffle = true;
		}
		p1 = primes[0], p2 = primes[1];
	}

	void init(string s, char o = 'a') {
		vector<int> v;
		fore(c, s) v.push_back(c - o);
		init(v);
	}

	void init(vector<int> s) {
		n = s.size();
		m1.resize(n); m2.resize(n); v1.resize(n); v2.resize(n);

		m1[0] = 1; m2[0] = 1;
		v1[0] = s[0]; v2[0] = s[0];

		rep(i, 1, n) {
			m1[i] = m1[i - 1] * p1;
			m2[i] = m2[i - 1] * p2;
			v1[i] = v1[i - 1] + m1[i] * s[i];
			v2[i] = v2[i - 1] + m2[i] * s[i];
		}
	}
	inline pair<mint1, mint2> hash(int l, int r) { // s[l..r]
		assert(l <= r); assert(r < n);
		mint1 a = v1[r];
		if (l) a -= v1[l - 1];
		a *= m1[n - 1 - r];

		mint2 b = v2[r];
		if (l) b -= v2[l - 1];
		b *= m2[n - 1 - r];

		return { a, b };
	}
	inline ll llhash(int l, int r) { // s[l..r]
		auto h = hash(l, r);
		return 1LL * h.first.get() * h.second.Mod + h.second.get();
	}
};
/*---------------------------------------------------------------------------------------------------
            ∧_∧
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     @hamayanhamayan0
    /   \     | |
    /   / ̄ ̄ ̄ ̄/  |
  __(__ニつ/     _/ .| .|____
     \/____/ (u ⊃
---------------------------------------------------------------------------------------------------*/














int N, A[201010], B[201010], A2[201010], B2[201010];
//---------------------------------------------------------------------------------------------------
void _main() {
	cin >> N;
	rep(i, 0, N) cin >> A[i];
	rep(i, 0, N) cin >> B[i];

	rep(i, 0, N) A2[i] = A[i] ^ A[(i + 1) % N];
	rep(i, 0, N) B2[i] = B[i] ^ B[(i + 1) % N];

	vector<int> v;
	rep(i, 0, N) v.push_back(A2[i]);
	rep(i, 0, N) v.push_back(A2[i]);
	rep(i, 0, N) v.push_back(B2[i]);

	RollingHash rh;
	rh.init(v);

	rep(k, 0, N) if (rh.hash(k, k + N - 2) == rh.hash(N * 2, N * 2 + N - 2)) {
		int x = A[k] ^ B[0];
		printf("%d %d\n", k, x);
	}
}





Submission Info

Submission Time
Task F - Xor Shift
User hamayanhamayan
Language C++14 (GCC 5.4.1)
Score 600
Code Size 4960 Byte
Status AC
Exec Time 92 ms
Memory 19140 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 600 / 600
Status
AC × 4
AC × 22
Set Name Test Cases
Sample sample_01, sample_02, sample_03, sample_04
All max_01, max_02, max_03, max_04, random_01, random_02, random_03, random_04, random_05, random_06, random_07, random_08, random_09, random_10, random_11, random_12, random_13, random_14, sample_01, sample_02, sample_03, sample_04
Case Name Status Exec Time Memory
max_01 AC 87 ms 17772 KiB
max_02 AC 92 ms 19140 KiB
max_03 AC 73 ms 18156 KiB
max_04 AC 48 ms 17900 KiB
random_01 AC 20 ms 5620 KiB
random_02 AC 35 ms 9712 KiB
random_03 AC 13 ms 3704 KiB
random_04 AC 34 ms 9328 KiB
random_05 AC 20 ms 5492 KiB
random_06 AC 19 ms 5108 KiB
random_07 AC 55 ms 15088 KiB
random_08 AC 41 ms 11248 KiB
random_09 AC 27 ms 7156 KiB
random_10 AC 12 ms 3320 KiB
random_11 AC 38 ms 10224 KiB
random_12 AC 11 ms 2808 KiB
random_13 AC 61 ms 18028 KiB
random_14 AC 2 ms 640 KiB
sample_01 AC 1 ms 256 KiB
sample_02 AC 1 ms 256 KiB
sample_03 AC 1 ms 256 KiB
sample_04 AC 1 ms 256 KiB