結果

問題 No.1209 XOR Into You
ユーザー jupirojupiro
提出日時 2020-10-20 09:42:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 2,840 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 147,640 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-07-21 08:16:51
合計ジャッジ時間 9,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 26 ms
5,376 KB
testcase_05 AC 26 ms
5,376 KB
testcase_06 AC 44 ms
5,632 KB
testcase_07 AC 158 ms
14,268 KB
testcase_08 AC 138 ms
13,184 KB
testcase_09 AC 136 ms
13,180 KB
testcase_10 AC 105 ms
11,444 KB
testcase_11 AC 135 ms
13,036 KB
testcase_12 AC 127 ms
12,452 KB
testcase_13 AC 145 ms
13,612 KB
testcase_14 AC 120 ms
12,160 KB
testcase_15 AC 126 ms
12,608 KB
testcase_16 AC 126 ms
12,448 KB
testcase_17 AC 117 ms
11,892 KB
testcase_18 AC 192 ms
15,812 KB
testcase_19 AC 124 ms
12,452 KB
testcase_20 AC 144 ms
13,632 KB
testcase_21 AC 102 ms
11,280 KB
testcase_22 AC 93 ms
16,384 KB
testcase_23 AC 93 ms
16,512 KB
testcase_24 AC 94 ms
16,512 KB
testcase_25 AC 193 ms
16,388 KB
testcase_26 AC 197 ms
16,508 KB
testcase_27 AC 199 ms
16,508 KB
testcase_28 AC 195 ms
16,512 KB
testcase_29 AC 196 ms
16,508 KB
testcase_30 AC 192 ms
16,512 KB
testcase_31 AC 66 ms
6,400 KB
testcase_32 AC 65 ms
6,400 KB
testcase_33 AC 66 ms
6,404 KB
testcase_34 AC 68 ms
6,400 KB
testcase_35 AC 66 ms
6,276 KB
testcase_36 AC 66 ms
6,272 KB
testcase_37 AC 36 ms
6,656 KB
testcase_38 AC 148 ms
14,188 KB
testcase_39 AC 130 ms
13,024 KB
testcase_40 AC 96 ms
16,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>
#include <cctype>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <utility>
#include <fstream>

using namespace std;
typedef long long ll;
using ull = unsigned long long;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename T> T gcd(T a, T b) { a = abs(a), b = abs(b); while (b > 0) { tie(a, b) = make_pair(b, a % b); } return a; }
//mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());

constexpr long long INF = 1LL << 60;
constexpr int inf = 1000000007;
constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353;
constexpr int MAX = 1100000;

template<typename T>
struct BIT {
	int n;
	vector<T> bit;
	BIT() :n(0) {}
	BIT(int _n) :n(_n) { bit = vector<T>(n + 1); }
	void add1(int idx, T val) {
		for (int i = idx; i <= n; i += i & -i) bit[i] += val;
	}
	T sum1(int idx) {
		T res = 0;
		for (int i = idx; i > 0; i -= i & -i) res += bit[i];
		return res;
	}
	//0-indexed
	void add(int idx, T val) { add1(idx + 1, val); }
	//0-indexed [left, right)
	T sum(int left, int right) { return sum1(right) - sum1(left); }

	int lower_bound(T x) {
		int res = 0;
		int k = 1;
		while (2 * k <= n) k <<= 1;
		for (; k > 0; k >>= 1) {
			if (res + k <= n and bit[res + k] < x) {
				x -= bit[res + k];
				res += k;
			}
		}
		return res;
	}
};

void fail() {
	cout << -1 << '\n';
	exit(0);
}

bool check(vector<int> a, vector<int> b) {
	sort(a.begin(), a.end());
	sort(b.begin(), b.end());
	return a == b;
}
int main()
{

	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int n; cin >> n;
	vector<int> a(n); for (int i = 0; i < n; i++) cin >> a[i];
	vector<int> b(n); for (int i = 0; i < n; i++) cin >> b[i];
	if (a[0] != b[0] or a.back() != b.back()) fail();
	vector<int> c(n - 1); for (int i = 0; i + 1 < n; i++) c[i] = a[i] ^ a[i + 1];
	vector<int> d(n - 1); for (int i = 0; i + 1 < n; i++) d[i] = b[i] ^ b[i + 1];
	if (!check(c, d)) fail();
	map<int, vector<int>> mp;
	for (int i = 0; i < d.size(); i++) {
		mp[d[i]].emplace_back(i);
	}
	for (auto& p : mp) {
		reverse(p.second.begin(), p.second.end());
	}
	for (int i = 0; i < c.size(); i++) {
		int t = mp[c[i]].back();
		mp[c[i]].pop_back();
		c[i] = t;
	}
	BIT<ll> bit(n);
	ll res = 0;
	for (int i = 0; i < c.size(); i++) {
		res += bit.sum(c[i], n);
		bit.add(c[i], 1);
	}
	cout << res << endl;
}
0