QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#100871#4425. Cakelonytree#AC ✓5197ms124496kbC++141.3kb2023-04-28 15:06:132023-04-28 15:06:17

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-04-28 15:06:17]
  • 评测
  • 测评结果:AC
  • 用时:5197ms
  • 内存:124496kb
  • [2023-04-28 15:06:13]
  • 提交

answer

#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
const int N = 5e5 + 5;
int tt, n;
int a[4][N], t[N];
struct tree{
	int a[N];
	void add(int x, int k){
		for (; x <= n; x += x & -x)
			a[x] += k;
	}
	int ask(int x){
		int res = 0;
		for (; x; x -= x & -x)
			res += a[x];
		return res;
	}
}T;
map<pair<int, int>, vector<int>> mp1, mp2;
void solve(){
	mp1.clear(), mp2.clear();
	cin >> n;
	for (int i : {0, 1, 2, 3})
		for (int j = 1; j <= n; j++)
			cin >> a[i][j];
	for (int i = 1; i <= n; i++)
		mp1[{a[i & 1][i], a[(i & 1) ^ 1][i]}].push_back(i);
	for (int i = 1; i <= n; i++)
		mp2[{a[(i & 1) | 2][i], a[((i & 1) ^ 1) | 2][i]}].push_back(i);
	for (const pair<pair<int, int>, vector<int>> &p : mp1){
		vector<int> &vec = mp2[p.first];
		if (vec.size() != p.second.size()){
			cout << -1 << endl;
			return;
		}
		for (int i = 0; i < (int)p.second.size(); i++)
			t[p.second[i]] = vec[i];
	}
	memset(T.a, 0, sizeof(T.a));
	long long ans = 0;
	for (int i = n; i >= 1; i--){
		ans += T.ask(t[i]);
		T.add(t[i], 1);
	}
	cout << ans << endl;
}
int main(){
	ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
//	freopen("in.txt", "r", stdin);
//	freopen("out.txt", "w", stdout);
	cin >> tt;
	while (tt--) solve();
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 5197ms
memory: 124396kb

input:

4
500000
471518156 319758862 812815356 520822448 129241996 461169933 796713727 608641317 281180101 953966756 749634941 274104949 996181952 88142916 998544672 125597509 991731126 974767231 338911715 674197249 167602044 682799026 226927279 703198907 216742488 8185420 94921423 690039818 859329736 45428...

output:

0
-1
124999750000
62569045381

result:

ok 4 lines

Test #2:

score: 0
Accepted
time: 4910ms
memory: 124496kb

input:

4
500000
413978977 447850293 802546055 289227062 321812178 97254226 380555063 167654142 874843339 349071516 10868808 93093321 996630037 33169052 99312773 335065051 278187197 94810404 643530967 947474510 63047182 573006260 8470509 116477506 251504796 899920047 806158195 452300674 859769748 489596554 ...

output:

62623368052
62486676013
62520737719
62506121292

result:

ok 4 lines

Test #3:

score: 0
Accepted
time: 1617ms
memory: 15724kb

input:

9082
7
714942297 703160828 709363739 23094554 461254804 159017923 666590460
196100940 70571239 755082029 321718821 55663261 378527017 335969190
321718821 335969190 70571239 755082029 378527017 55663261 714942297
23094554 666590460 703160828 709363739 159017923 461254804 196100940
5
2 1 1 2 1
2 1 2 2...

output:

13
5
0
-1
0
2
10
2
0
5
0
10
15
1
2336
-1
1
-1
-1
4
-1
15
0
9
45
15
3
4
0
11
-1
-1
10
-1
18
10
0
3
1
-1
0
1
0
5
-1
16
-1
-1
-1
15
-1
307294
-1
7
0
0
-1
-1
-1
0
2210
3
1
16
-1
-1
0
-1
0
0
5
5
10
3
0
-1
21
0
7
3
0
32308741
-1
20
-1
0
1
-1
9
6
2249
0
-1
0
55236
2265
1
12
-1
-1
29
0
-1
20
0
2
0
0
1
-1
0
...

result:

ok 9082 lines

Extra Test:

score: 0
Extra Test Passed