i_n, i_m = input().split()
n = []
m = []
res = ""
n_excluded = []
for n_i in range(int(i_n)):
x1, y1, x2, y2 = input().split()
n.append({
"x1": int(x1), "y1": int(y1),
"x2": int(x2), "y2": int(y2)
})
for m_i in range(int(i_m)):
x, y = input().split()
m.append({
"x": int(x), "y": int(y)
})
for mm in m:
jar_num = 1
collision = False
for nn in n:
if jar_num not in n_excluded and nn['x1'] <= mm['x'] <= nn['x2'] and nn['y1'] <= mm['y'] <= nn['y2']:
collision = True
n_excluded.append(jar_num)
break
jar_num += 1
if collision:
res += " " + str(jar_num)
else:
res += " -1"
print(res)
Объяснение:
Это решение подходит только для E1. В E2 - ошибка Runtime Exception
Поделитесь своими знаниями, ответьте на вопрос:
решить задачу cif4 PascalABC(Uses Robot)
uses Robot;
begin
Task('cif4');
while FreeFromRight do
begin
right;
if WallFromUp and FreeFromDown then paint
end
end.