QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#809425 | #9574. Strips | xtqqwq | WA | 137ms | 10820kb | Python3 | 1.8kb | 2024-12-11 14:59:21 | 2024-12-11 14:59:22 |
Judging History
answer
import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
n, m, k, w = map(int, input().split())
red = list(map(int, input().split()))
black = list(map(int, input().split()))
red.sort()
black.sort()
# Add boundary black cells
black_cells = [0] + black + [w+1]
intervals = []
r_idx = 0
possible = True
# Process each gap formed by black cells
for i in range(len(black_cells)-1):
G_start = black_cells[i] + 1
G_end = black_cells[i+1] - 1
if G_start > G_end:
continue
# In this gap, cover all red cells that fall inside
# Reset last_end for each gap
last_end = G_start - 1
# Move r_idx to first red cell in this gap (if any)
while r_idx < n and red[r_idx] < G_start:
r_idx += 1
while r_idx < n and red[r_idx] <= G_end:
R = red[r_idx]
# Compute intersection:
L = max(G_start, R - k + 1, last_end + 1)
U = min(R, G_end - k + 1)
if L > U:
possible = False
break
# Choose X = U (far right feasible)
X = U
# Place interval [X..X+k-1]
intervals.append(X)
new_end = X + k - 1
last_end = new_end
# Cover all red cells up to new_end
while r_idx < n and red[r_idx] <= new_end:
r_idx += 1
if not possible:
break
if not possible or r_idx < n:
print(-1)
else:
print(len(intervals))
if intervals:
print(" ".join(map(str, intervals)))
else:
# No intervals needed (if n=0, though problem states n>=1 so likely never occurs)
print()
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 6ms
memory: 10644kb
input:
4 5 2 3 16 7 11 2 9 14 13 5 3 2 4 11 6 10 2 1 11 2 1 2 6 1 5 3 2 1 2 6 1 5 2
output:
4 2 7 10 14 -1 2 1 5 -1
result:
ok ok 4 cases (4 test cases)
Test #2:
score: -100
Wrong Answer
time: 137ms
memory: 10820kb
input:
11000 3 8 2 53 32 3 33 35 19 38 20 1 30 10 6 7 10 1 42 3 14 4 36 28 40 22 17 20 12 41 27 7 1 19 13 9 6 6 13 78 55 76 53 32 54 58 62 45 21 4 7 61 8 7 3 68 9 26 54 31 22 3 38 65 34 16 58 47 52 29 53 5 8 4 33 33 5 30 6 15 27 12 9 28 19 2 13 10 6 1 2 48 8 12 48 1 41 31 40 7 6 7 61 20 19 30 52 49 17 40 3...
output:
2 3 32 7 3 4 14 22 28 36 40 3 32 48 66 8 3 9 22 26 31 38 54 65 3 5 15 30 6 1 8 12 31 41 47 4 17 30 39 49 2 52 67 1 27 1 22 1 62 5 24 33 43 48 60 2 4 31 3 11 20 31 3 3 16 33 3 25 30 42 3 3 17 60 -1 2 54 66 3 50 59 65 3 50 62 78 1 81 4 2 11 16 23 5 3 7 17 36 49 2 1 45 2 7 25 1 4 -1 3 25 27 44 3 7 8 36...
result:
wrong answer Participant didn't find a solution but the jury found one. (test case 18)