結果

問題 No.1209 XOR Into You
ユーザー vjudge1vjudge1
提出日時 2024-10-16 21:12:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,566 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-10-16 21:12:46
合計ジャッジ時間 6,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 82 ms
5,248 KB
testcase_05 AC 76 ms
5,248 KB
testcase_06 AC 88 ms
6,656 KB
testcase_07 AC 100 ms
7,040 KB
testcase_08 AC 88 ms
6,784 KB
testcase_09 AC 90 ms
6,656 KB
testcase_10 AC 72 ms
6,144 KB
testcase_11 AC 88 ms
6,656 KB
testcase_12 AC 83 ms
6,528 KB
testcase_13 AC 96 ms
6,912 KB
testcase_14 AC 82 ms
6,400 KB
testcase_15 AC 84 ms
6,528 KB
testcase_16 AC 82 ms
6,528 KB
testcase_17 AC 80 ms
6,528 KB
testcase_18 AC 116 ms
7,552 KB
testcase_19 AC 83 ms
6,528 KB
testcase_20 AC 95 ms
6,912 KB
testcase_21 AC 72 ms
6,016 KB
testcase_22 AC 97 ms
7,808 KB
testcase_23 AC 95 ms
7,808 KB
testcase_24 AC 93 ms
7,808 KB
testcase_25 AC 119 ms
7,808 KB
testcase_26 AC 122 ms
7,808 KB
testcase_27 AC 121 ms
7,808 KB
testcase_28 AC 120 ms
7,808 KB
testcase_29 AC 120 ms
7,680 KB
testcase_30 AC 125 ms
7,936 KB
testcase_31 AC 116 ms
7,680 KB
testcase_32 AC 115 ms
7,808 KB
testcase_33 AC 132 ms
7,808 KB
testcase_34 AC 119 ms
7,808 KB
testcase_35 AC 114 ms
7,808 KB
testcase_36 AC 113 ms
7,808 KB
testcase_37 AC 89 ms
7,808 KB
testcase_38 AC 98 ms
7,040 KB
testcase_39 AC 89 ms
6,656 KB
testcase_40 AC 95 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 1e5 + 5;

int n;
long long a[N] = {0}, b[N] = {0};

int m;
int t[N] = {0};
int lowbit(int x) {
	return x & -x;
}
void mdf(int x, int v) {
	while (x <= n)
		t[x] += v, x += lowbit(x);
}
int qry(int x) {
	int ans = 0;
	while (x > 0)
		ans += t[x], x -= lowbit(x);
	return ans;
}

long long ta[N] = {0}, tb[N] = {0};
int cnt[N] = {0};
int pos[N] = {0};

bool init() {
	sort(ta + 1, ta + n + 1);
	sort(tb + 1, tb + n + 1);
	for (int i = 1; i <= n; i++)
		if (ta[i] != tb[i])
			return false;
	for (int i = 1; i <= n; i++) {
		int x = lower_bound(ta + 1, ta + n + 1, a[i]) - ta;
		a[i] = x + cnt[x]++;
	//	cout << a[i] << " " << x << " " << cnt[x] << endl;
		pos[a[i]] = i;
	}
///	cout << endl;
	for (int i = 1; i <= n; i++)
		cnt[i] = 0;
	for (int i = 1; i <= n; i++) {
		int x = lower_bound(ta + 1, ta + n + 1, b[i]) - ta;
		b[i] = x + cnt[x]++;
//		cout << b[i] << " ";
		b[i] = pos[b[i]];
	}
//	cout << endl;
	return true;
}

int main() {
	cin >> n;
	for (int i = 1; i <= n; i++)
		cin >> a[i];
	for (int i = 1; i <= n; i++)
		cin >> b[i];
	if (a[1] != b[1]) {
		printf("-1\n");
		return 0;
	}
	for (int i = 1; i < n; i++)
		a[i] ^= a[i + 1], b[i] ^= b[i + 1], swap(a[i], b[i]);
	n--;
	for (int i = 1; i <= n; i++)
		ta[i] = a[i], tb[i] = b[i];
	if (!init()) {
		printf("-1\n");
		return 0;
	}
	long long ans = 0ll;
	for (int i = 1; i <= n; i++) {
		ans += (i - 1) - qry(b[i] - 1);
		mdf(b[i], 1);
	}
	cout << ans << endl;
	return 0;
} 
0