結果

問題 No.1209 XOR Into You
ユーザー rabimearabimea
提出日時 2023-01-28 02:04:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 1,501 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 216,440 KB
実行使用メモリ 27,892 KB
最終ジャッジ日時 2024-06-28 10:08:22
合計ジャッジ時間 12,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 28 ms
5,376 KB
testcase_05 AC 27 ms
5,376 KB
testcase_06 AC 184 ms
26,112 KB
testcase_07 AC 256 ms
24,088 KB
testcase_08 AC 240 ms
22,032 KB
testcase_09 AC 232 ms
22,052 KB
testcase_10 AC 183 ms
18,156 KB
testcase_11 AC 236 ms
21,948 KB
testcase_12 AC 213 ms
20,640 KB
testcase_13 AC 241 ms
22,980 KB
testcase_14 AC 203 ms
20,160 KB
testcase_15 AC 209 ms
21,028 KB
testcase_16 AC 213 ms
20,884 KB
testcase_17 AC 196 ms
20,172 KB
testcase_18 AC 308 ms
26,848 KB
testcase_19 AC 207 ms
20,872 KB
testcase_20 AC 239 ms
22,900 KB
testcase_21 AC 174 ms
17,788 KB
testcase_22 AC 156 ms
27,872 KB
testcase_23 AC 157 ms
27,884 KB
testcase_24 AC 156 ms
27,760 KB
testcase_25 AC 261 ms
27,888 KB
testcase_26 AC 281 ms
27,760 KB
testcase_27 AC 265 ms
27,892 KB
testcase_28 AC 272 ms
27,760 KB
testcase_29 AC 272 ms
27,892 KB
testcase_30 AC 275 ms
27,772 KB
testcase_31 AC 150 ms
7,404 KB
testcase_32 AC 149 ms
7,396 KB
testcase_33 AC 150 ms
7,276 KB
testcase_34 AC 149 ms
7,408 KB
testcase_35 AC 150 ms
7,276 KB
testcase_36 AC 148 ms
7,416 KB
testcase_37 AC 67 ms
6,684 KB
testcase_38 AC 196 ms
23,796 KB
testcase_39 AC 173 ms
21,788 KB
testcase_40 AC 157 ms
27,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
#define fi first
#define se second
#define pb push_back
using vi = vector <int>;
using ll = long long;
using vl = vector <ll>;
using pii = pair <int, int>;
//~ const ll mod = 998244353;
const ll mod = 1e9 + 7;
ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a;
	for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; }

const int N = 2e5 + 11;

int a[N], b[N];

int p[N];

struct event {
	int x, t;
	bool operator <(const event &e) const {
		return x < e.x;
	}
};
ll solve(int l, int r) {
	if(l + 1 == r) return 0;
	int m = (l + r) / 2;
	ll re = solve(l, m) + solve(m, r);
	vector <event> es;
	for(int i = l; i < m; i ++)
		es.pb({p[i], 0});
	for(int i = m; i < r; i ++)
		es.pb({p[i], 1});
	
	int cnt = 0;
	sort(es.begin(), es.end());
	for(auto e : es)
		if(e.t == 1) cnt ++;
		else re += cnt;
	return re;
}

int main() {
	ios :: sync_with_stdio(false);
	
	int n; cin >> n;
	for(int i = 0; i < n; i ++) cin >> a[i];
	for(int i = 0; i < n; i ++) cin >> b[i];
	
	if(a[0] != b[0]) {
		cout << "-1\n";
		return 0;
	}
	
	map <int, vi> ma, mb;
	for(int i = 0; i < n - 1; i ++) {
		ma[a[i] ^ a[i + 1]].pb(i);
		mb[b[i] ^ b[i + 1]].pb(i);
	}

	for(auto &[x, u] : ma) {
		auto &v = mb[x];
		if(u.size() != v.size()) {
			cout << "-1\n";
			return 0;
		}
		
		for(int i = 0; i < u.size(); i ++) {
			p[u[i]] = v[i];
		}
	}
	
	//~ for(int i = 0; i < n - 1; i ++)
		//~ cout << p[i] << ' ';
	//~ cout << '\n';
	
	cout << solve(0, n - 1) << '\n';
}
0