(Время: 1 сек. Память: 16
Мб Сложность: 19%)
На столе лежат
коробка размера A1 × B1 × C1 и коробка размера A2 × B2 × C2. Выясните можно ли
одну из этих коробок положить в другую, если разрешены повороты коробок вокруг
любого ребра на угол 90 градусов.
Входные
данные
Первая строка
входного файла содержит три целых числа A1, B1 и C1. Вторая строка входного
файла содержит три целых числа A2, B2 и C2. Все числа положительны и не
превосходят 1000.
Выходные
данные
Если коробки
одинаковы, выведите "Boxes are equal". Если первая коробка может быть
положена во вторую, выведите "The first box is smaller than the second
one". Если вторая коробка может быть положена в первую, выведите "The
first box is larger than the second one". Иначе, выведите "Boxes are
incomparable".
Примеры
№
|
INPUT.TXT
|
OUTPUT.TXT
|
1
|
1 2 3
3 2 1 |
Boxes are equal
|
2
|
2 2 3
3 2 1 |
The first box is larger than the second
one
|
3
|
2 2 3
3 2 3 |
The first box is smaller than the second
one
|
4
|
3 4 5
2 4 6 |
Boxes are incomparable
|
Решение
var a,b,c,d:array[1..3] of integer;i,j,t,k,r,s,s1:integer;
f,f1:text;
begin
assign(f,'input.txt');
reset(f);
assign(f1,'output.txt');
rewrite(f1);
readln(f,a[1],a[2],a[3]);
readln(f,b[1],b[2],b[3]);
for i:=1 to 2 do
for j:=1 to 3-i do
begin
if a[j]>a[j+1] then begin k:=a[j]; a[j]:=a[j+1]; a[j+1]:=k; end;
if b[j]>b[j+1] then begin k:=b[j]; b[j]:=b[j+1]; b[j+1]:=k; end;
end;
for i:=1 to 3 do
begin
s:=a[i]-b[i]; s1:=b[i]-a[i];
if s<0 then c[i]:=-1 else if s=0 then c[i]:=0 else c[i]:=1;
if s1<0 then d[i]:=-1 else if s1=0 then d[i]:=0 else d[i]:=1;
end; k:=0; T:=0;r:=0;
for i:=1 to 3 do
begin
if c[i]<>0 then k:=1;
if c[i]<0 then t:=1;
if d[i]<0 then r:=1;
end;
if k=0 then write(f1,'Boxes are equal');
if (t=1) and (r=1) then write(f1,'Boxes are incomparable');
if (t=1) and (r=0) then write(f1,'The first box is smaller than the second one');
if (t=0) and (r=1) then write(f1,'The first box is larger than the second one');
close(f);
close(f1);
end.
Вопросы, замечания, свои вариант решения пишите в комментариях.
Комментариев нет:
Отправить комментарий