QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#884199#6400. Game: CelestexhguaRE 902ms251204kbC++174.7kb2025-02-05 22:04:002025-02-05 22:04:01

Judging History

This is the latest submission verdict.

  • [2025-02-05 22:04:01]
  • Judged
  • Verdict: RE
  • Time: 902ms
  • Memory: 251204kb
  • [2025-02-05 22:04:00]
  • Submitted

answer

#include <bits/stdc++.h>

using i64 = long long;

constexpr int N = 5e5 + 5, BASE = 13331, P = 1e9 + 7;

int T, n, L, R, x[N], a[N], pre[N], pw[N];
bool ban[N];
std::array<int, 2> S[N];

struct PersistentTree {
    static constexpr int N = 5e5 + 5, V = 3e7 + 5;
    int tot, root[N], ls[V], rs[V], h[V];
    void clear() { tot = 0; memset(root, 0, sizeof root); }
    void pushUp(int u, int l, int r) {
        int mid = (l + r) >> 1;
        h[u] = (1ll * h[ls[u]] * pw[r - mid] + h[rs[u]]) % P;
    }
    void build(int &u, int l, int r) {
        u = ++tot;
        if (l == r) return h[u] = 0, void();
        int mid = (l + r) >> 1;
        build(ls[u], l, mid), build(rs[u], mid + 1, r);
        pushUp(u, l, r);
    }
    void modify(int &u, int v, int l, int r, int pos, int val) {
        u = ++tot; ls[u] = ls[v], rs[u] = rs[v], h[u] = h[v];
        if (l == r) return h[u] += val, void();
        int mid = (l + r) >> 1;
        if (pos <= mid) modify(ls[u], ls[v], l, mid, pos, val);
        if (pos > mid)  modify(rs[u], rs[v], mid + 1, r, pos, val);
        pushUp(u, l, r);
    }
    bool compare(int u, int v, int l, int r) {
        if (l == r) return h[u] <= h[v];
        int mid = (l + r) >> 1;
        if (h[rs[u]] == h[rs[v]]) return compare(ls[u], ls[v], l, mid);
        return compare(rs[u], rs[v], mid + 1, r);
    }
} T1;

struct SegTree {
	#define ls(u) (u << 1)
	#define rs(u) (u << 1 | 1)
	int m, max[N << 2];
	int Max(int lhs, int rhs) {
		if (!lhs || !rhs) return lhs + rhs;
		return T1.compare(T1.root[lhs], T1.root[rhs], 1, n) ? rhs : lhs; 
	}
	void pushUp(int u) {
		max[u] = Max(max[ls(u)], max[rs(u)]);
	}
	void modify(int u, int l, int r, int pos) {
		if (l == r) return max[u] = pos, void();
		int mid = (l + r) >> 1;
		if (pos <= mid) modify(ls(u), l, mid, pos);
		if (pos > mid)  modify(rs(u), mid + 1, r, pos);
		pushUp(u);
	}
	int query(int u, int l, int r, int ql, int qr) {
		if (ql <= l && r <= qr) return max[u];
		int mid = (l + r) >> 1, ret = 0;
		if (ql <= mid) ret = Max(ret, query(ls(u), l, mid, ql, qr));
		if (qr > mid)  ret = Max(ret, query(rs(u), mid + 1, r, ql, qr));
		return ret;
	}
} T2;

namespace FastIO {
	static constexpr int SIZE = (1 << 20);
	char bufIn[SIZE], bufOut[SIZE], *p1, *p2, *pOut = bufOut;
	#define gc()  (p1 == p2 && (p2 = (p1 = bufIn) + fread(bufIn, 1, 1 << 20, stdin)), p1 == p2 ? EOF : *p1++)
	#define pc(c) (pOut - bufOut == SIZE && (fwrite(bufOut, 1, 1 << 20, stdout), pOut = bufOut), *pOut++ = c)

	template <typename T>
	inline void read(T &x) {
		x = 0; bool f = 0; char ch = gc();
		while(!isdigit(ch)) f |= (ch == '-'), ch = gc();
		while( isdigit(ch)) x = x * 10 + (ch - '0'), ch = gc();
		if (f) x = -x;
	}

	template <typename T, typename... Args>
	inline void read(T &x, Args &...args){ read(x); read(args...); }

	template <typename T = int>
	inline T read() {
		T x = 0; bool f = 0; char ch = gc();
		while(!isdigit(ch)) f |= (ch == '-'), ch = gc();
		while( isdigit(ch)) x = x * 10 + (ch - '0'), ch = gc();
		return f ? -x : x;
	}
	
	template <typename T>
	inline void write(T x) {
		if (x < 0) x = -x, pc('-');
		static T stk[40]; int tp = 0;
		do stk[tp++] = x % 10, x /= 10; while(x);
		while(tp) pc(stk[--tp] + '0');
	}

	template <typename T, typename... Args>
	inline void write(T x, Args ...args){ write(x); pc(' '); write(args...); }
	
	template <typename T> inline void writeln(T x) { write(x); pc('\n'); }	
	template <typename T> inline void writesp(T x) { write(x); pc(' '); }
	inline void flush() { fwrite(bufOut, 1, pOut - bufOut, stdout); }
};

using namespace FastIO;

void solve() {
	n = read(), L = read(), R = read();
	for (int i = 1; i <= n; i++) x[i] = read(), ban[i] = pre[i] = 0;
	for (int i = 1; i <= n; i++) a[i] = read();
	for (int i = 1; i <= n; i++) {
		S[i][0] = std::lower_bound(x + 1, x + 1 + n, x[i] - R) - x;
		S[i][1] = std::upper_bound(x + 1, x + 1 + n, x[i] - L) - x - 1;
	}
	T1.build(T1.root[0], 1, n), T1.modify(T1.root[1], T1.root[0], 1, n, a[1], 1);
	for (int i = 1; i <= (n << 2); i++) T2.max[i] = 0;
	T2.modify(1, 1, n, 1);
	for (int i = 2; i <= n; i++) {
		auto [l, r] = S[i];
		if (l <= r) pre[i] = T2.query(1, 1, n, l, r);
		if (!pre[i]) { ban[i] = 1; continue; }
		T1.modify(T1.root[i], T1.root[pre[i]], 1, n, a[i], 1);
		T2.modify(1, 1, n, i);
	}
	if (ban[n]) return writeln(-1), void();
	int cur = n; std::vector<int> ans;
	while (cur) {
		ans.push_back(a[cur]);
		cur = pre[cur];
	}
	std::sort(ans.begin(), ans.end(), std::greater<int>());
	writeln(ans.size());
	for (auto u : ans) writesp(u);
	pc('\n');
}

int main() {
	pw[0] = 1;
	for (int i = 1; i < N; i++) pw[i] = 1ll * pw[i - 1] * BASE % P;

	T = read();
	while (T--) solve();
	
	return flush(), 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 22108kb

input:

2
5 2 3
1 2 3 4 5
5 2 3 1 4
3 1 2
1 4 7
3 3 3

output:

3
5 4 3 
-1

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 268ms
memory: 105408kb

input:

10000
57 8 11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
11 16 7 7 10 13 9 14 10 1 12 4 8 13 3 20 16 7 16 19 20 8 19 7 16 6 17 13 7 19 17 11 12 17 6 3 7 8 14 2 4 15 5 18 16 7 20 9 1...

output:

7
20 20 19 14 12 11 3 
-1
6
6 5 3 2 1 1 
-1
185
20 20 20 20 20 20 20 20 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 17 17 17 17 17 17 17 17 16 16 16 16 16 16 16 16 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14 14 14 14 13 13 13 13 13 13 13 13 13 12 12 12 12 12 12 12 ...

result:

ok 16378 lines

Test #3:

score: 0
Accepted
time: 162ms
memory: 78848kb

input:

10000
86 230405 991217
3291 11742 17120 30018 47955 52215 96227 98031 100118 106944 117304 121905 124796 135037 164100 164654 169459 177527 206513 212554 228740 229590 261521 295062 300116 312030 326533 329513 349983 353580 355242 356731 363347 368753 389545 396163 399755 409927 426532 427781 441386...

output:

4
20 19 2 1 
4
19 12 6 3 
-1
-1
24
20 19 18 18 18 18 18 18 18 18 16 16 16 16 15 15 13 12 11 9 5 4 2 2 
-1
2
4 3 
3
6 4 2 
4
13 12 5 5 
3
20 17 5 
3
20 8 3 
-1
-1
1
1 
-1
5
20 20 19 15 14 
2
13 12 
-1
-1
4
20 20 8 5 
-1
-1
-1
6
20 16 16 16 13 9 
-1
-1
-1
3
19 17 11 
3
19 15 9 
-1
-1
-1
-1
-1
-1
2
7 3...

result:

ok 14975 lines

Test #4:

score: 0
Accepted
time: 259ms
memory: 106116kb

input:

10000
101 17 17
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98...

output:

-1
15
10 10 10 10 10 10 9 9 9 9 7 7 6 6 3 
-1
44
10 10 10 10 10 10 10 10 10 10 10 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 8 8 8 8 7 6 6 6 6 6 6 6 5 4 3 3 3 3 
11
10 10 10 10 10 9 8 7 6 6 2 
6
10 10 10 10 8 3 
18
10 10 10 10 10 10 8 8 8 8 7 7 7 6 5 3 2 2 
-1
-1
1
1 
-1
-1
-1
20
10 10 10 10 10 10 10 10 10 9 8 8...

result:

ok 16344 lines

Test #5:

score: 0
Accepted
time: 236ms
memory: 107076kb

input:

10000
18 16 16
1 2 3 4 5 6 7 8 10 11 12 13 14 16 17 18 19 20
2 2 2 1 2 1 1 2 2 2 2 1 2 2 1 2 1 1
403 3 7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 ...

output:

-1
126
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 
-1
-1
-1
1
1 
-1
-1
10
2 2 2 2 2 2 1 1 1...

result:

ok 16420 lines

Test #6:

score: 0
Accepted
time: 240ms
memory: 113928kb

input:

10000
251 1 1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 9...

output:

251
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

result:

ok 16925 lines

Test #7:

score: 0
Accepted
time: 642ms
memory: 179220kb

input:

100
23882 222 481
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 ...

output:

102
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 19...

result:

ok 167 lines

Test #8:

score: 0
Accepted
time: 297ms
memory: 108328kb

input:

100
3789 29850 70419
774 1032 1649 1723 2194 3021 3114 3308 3344 3360 3688 3781 3967 4245 4878 4966 5099 5597 5617 5638 5645 5784 5871 6136 6158 6358 6483 6600 6766 6775 6800 6895 7119 7439 7485 7696 7734 8432 8493 8581 8627 9203 9576 9885 10062 10290 10454 10466 10537 10717 10861 11048 11484 11497 ...

output:

30
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 19 18 3 
-1
-1
-1
4
20 20 18 10 
-1
6
20 20 20 20 15 9 
-1
-1
5
20 20 20 18 4 
4
20 20 13 7 
-1
4
20 20 19 18 
-1
-1
-1
-1
2
16 8 
-1
3
20 20 6 
8
20 20 20 20 20 20 15 12 
-1
-1
-1
17
20 20 20 20 20 20 20 20 20 20 20...

result:

ok 139 lines

Test #9:

score: 0
Accepted
time: 589ms
memory: 166288kb

input:

100
181 1947 1967
17 23 47 53 55 68 84 92 110 147 153 164 191 198 207 209 215 221 255 269 275 302 305 322 324 363 370 373 385 405 407 429 451 458 466 472 478 500 508 544 557 561 564 565 569 587 600 610 617 630 645 659 665 670 674 715 726 744 747 764 769 770 774 782 786 787 794 795 824 852 860 873 87...

output:

-1
-1
-1
12
10 10 10 10 10 10 10 10 10 10 9 4 
12
10 10 10 10 10 10 10 10 10 10 5 5 
13
10 10 10 10 10 10 10 10 10 10 10 5 4 
-1
22
10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 5 2 
215
10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 ...

result:

ok 166 lines

Test #10:

score: 0
Accepted
time: 625ms
memory: 178428kb

input:

100
5589 851 904
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 9...

output:

-1
267
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3...

result:

ok 184 lines

Test #11:

score: 0
Accepted
time: 253ms
memory: 85880kb

input:

100
6944 1905 1926
2 3 4 6 7 8 9 10 11 13 15 16 17 18 20 22 23 24 25 29 31 32 33 34 35 39 40 42 43 44 45 46 47 49 51 54 55 57 58 60 61 62 63 64 67 68 69 71 72 74 75 76 78 79 80 81 82 83 84 85 86 90 91 92 94 95 96 98 100 104 105 106 107 108 109 111 112 117 118 119 120 123 125 126 127 128 131 133 134 ...

output:

-1
-1
296
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

result:

ok 118 lines

Test #12:

score: 0
Accepted
time: 902ms
memory: 251204kb

input:

10
93999 762 838
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 9...

output:

124
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 1 
2332
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 ...

result:

ok 20 lines

Test #13:

score: 0
Accepted
time: 650ms
memory: 188444kb

input:

10
10628 1687 1731
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97...

output:

-1
-1
76
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 
-1
-1
219
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...

result:

ok 13 lines

Test #14:

score: 0
Accepted
time: 129ms
memory: 56276kb

input:

3
187063 95635158 95636093
11 507 618 934 1132 2191 3177 3365 3571 3605 4833 4988 5100 6157 6542 7005 7008 7258 7353 7366 7507 9327 10129 10131 10240 11168 11397 12964 13519 14429 14748 15782 16126 16244 16491 17464 17693 18411 19312 19807 19967 20183 21049 21170 21526 21813 22278 22946 23297 23600 ...

output:

-1
-1
-1

result:

ok 3 lines

Test #15:

score: -100
Runtime Error

input:

3
109970 343649 521308
4 6 25 27 32 45 53 56 76 81 100 111 115 133 143 145 163 169 173 174 194 199 243 261 299 300 303 311 332 335 341 357 367 368 374 387 392 412 415 422 435 437 442 443 444 454 458 462 466 478 482 486 490 497 499 505 512 521 528 544 549 558 560 574 587 597 620 622 625 643 651 652 6...

output:


result: