program DoiBan;
type
Pair = record
First: Integer;
Second: Integer;
end;
function DoiBan(n, m, k: Integer; var chua_dat, tot: array of Integer): array of Pair;
var
chua_dat_sorted, tot_sorted: array of Pair;
result_pairs: array of Pair;
i, j: Integer;
temp: Pair;
begin
SetLength(chua_dat_sorted, n);
SetLength(tot_sorted, m);
SetLength(result_pairs, 0);
for i := 0 to n - 1 do
begin
chua_dat_sorted[i].First := i + 1;
chua_dat_sorted[i].Second := chua_dat[i];
end;
for i := 0 to m - 1 do
begin
tot_sorted[i].First := i + 1;
tot_sorted[i].Second := tot[i];
end;
// Sắp xếp mảng theo yêu cầu
for i := 0 to n - 1 do
for j := i + 1 to n - 1 do
if chua_dat_sorted[j].Second < chua_dat_sorted[i].Second then
begin
// Swap
temp := chua_dat_sorted[j];
chua_dat_sorted[j] := chua_dat_sorted[i];
chua_dat_sorted[i] := temp;
end;
for i := 0 to m - 1 do
for j := i + 1 to m - 1 do
if tot_sorted[j].Second > tot_sorted[i].Second then
begin
// Swap
temp := tot_sorted[j];
tot_sorted[j] := tot_sorted[i];
tot_sorted[i] := temp;
end;
i := 0;
j := 0;
while (j < m) do
begin
while (i < n) and (chua_dat_sorted[i].Second + k <= tot_sorted[j].Second) do
begin
SetLength(result_pairs, Length(result_pairs) + 1);
result_pairs[High(result_pairs)].First := chua_dat_sorted[i].First;
result_pairs[High(result_pairs)].Second := tot_sorted[j].First;
i := i + 1;
end;
j := j + 1;
end;
Result := result_pairs;
end;
procedure Main;
var
n, m, k, i: Integer;
chua_dat, tot: array of Integer;
result_pairs: array of Pair;
file_in, file_out: TextFile;
begin
AssignFile(file_in, 'DOIBAN.INP');
Reset(file_in);
ReadLn(file_in, n, m, k);
SetLength(chua_dat, n);
SetLength(tot, m);
for i := 0 to n - 1 do
Read(file_in, chua_dat[i]);
ReadLn(file_in);
for i := 0 to m - 1 do
Read(file_in, tot[i]);
ReadLn(file_in);
CloseFile(file_in);
result_pairs := DoiBan(n, m, k, chua_dat, tot);
AssignFile(file_out, 'DOIBAN.OUT');
Rewrite(file_out);
for i := 0 to High(result_pairs) do
WriteLn(file_out, result_pairs[i].First, ' ', result_pairs[i].Second);
CloseFile(file_out);
end;
begin
Main;
end.
$#lamtung$
Tin học là một ngành khoa học chuyên nghiên cứu quá trình tự động hóa việc tổ chức, lưu trữ, xử lý và truyền dẫn thông tin của một hệ thống máy tính cụ thể hoặc trừu tượng. Tin học bao hàm tất cả các nghiên cứu và kỹ thuật có liên quan đến việc mô phỏng, biến đổi và tái tạo thông tin. Hãy tận dụng sức mạnh của tin học để giải quyết các vấn đề và sáng tạo ra những giải pháp mới!
Lớp 9 - Là năm cuối ở cấp trung học cơ sở, chúng ta sắp phải bước vào một kỳ thi căng thẳng và sắp chia tay bạn bè, thầy cô. Áp lực từ kỳ vọng của phụ huynh và tương lai lên cấp 3 thật là lớn, nhưng hãy tin vào bản thân và giữ vững sự tự tin!
Copyright © 2024 Giai BT SGK