C解法
输入数据结构:
输入一个整数 n 表示灯光的数量。
对于每个灯光,输入五个整数:灯光的编号 id,左上角坐标 (x1, y1) 和右下角坐标 (x2, y2)。
目标:
每个灯光的实际位置是其圆心,圆心坐标可以通过 (x1 + x2) / 2 和 (y1 + y2) / 2 计算得到,半径可以通过 (x2 - x1) / 2 计算得到。
将灯光按纵坐标 y 排序,确保在同一行的灯光按横坐标 x 排序后输出。
处理同一行灯光:
根据纵坐标的差值判断灯光是否属于同一行:如果当前灯光与上一行灯光的纵坐标差不超过基准灯光的半径(y 坐标差小于等于半径),则认为它们在同一行。
对于每一行灯光,按横坐标 x 排序,并按顺序输出灯光的 id。
步骤:
使用结构体 Light 来存储每个灯光的编号、圆心坐标和半径。
通过 qsort 按照纵坐标对灯光进行排序,然后根据基准灯光的 y 坐标差值来分组处理。
对每一组同一行的灯光按横坐标 x 排序,最后输出每行灯光的 id。
#include
#include
typedef struct {
int id;
int x;
int y;
int r;
} Light;
int compareY(const void* a, const void* b) {
Light* lightA = (Light*)a;
Light* lightB = (Light*)b;
return lightA->y - lightB->y;
}
int compareX(const void* a, const void* b) {
Light* lightA = (Light*)a;
Light* lightB = (Light*)b;
return lightA->x - lightB->x;
}
void determineOrder(Light lights[], int n) {
qsort(lights, n, sizeof(Light), compareY);
Light sameRow[n];
int sameRowCount = 0;
Light reference = lights[0];
sameRow[sameRowCount++] = reference;
for (int i = 1; i < n; i++) {
Light current = lights[i];
if (current.y - reference.y <= reference.r) {
sameRow[sameRowCount++] = current;
}
else {
qsort(sameRow, sameRowCount, sizeof(Light), compareX);
for (int j = 0; j < sameRowCount; j++) {
printf("%d ", sameRow[j].id);
}
sameRowCount = 0;
reference = current;
sameRow[sameRowCount++] = reference;
}
}
if (sameRowCount > 0) {
qsort(sameRow, sameRowCount, sizeof(Light), compareX);
for (int j = 0; j < sameRowCount; j++) {
printf("%d ", sameRow[j].id);
}
}
printf("\n");
}
int main() {
int n;
scanf("%d", &n);
Light lights[n];
for (int i = 0; i < n; i++) {
int id, x1, y1, x2, y2;
scanf("%d %d %d %d %d", &id, &x1, &y1, &x2, &y2);
lights[i].id = id;
lights[i].x = (x1 + x2) / 2;
lights[i].y = (y1 + y2) / 2;
lights[i].r = (x2 - x1) / 2;
}
determineOrder(lights, n);
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 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
JS解法
首先按照纵坐标(y)对灯光进行排序,确保同一水平线上的灯光按顺序排列。
同一行的灯光按横坐标(x)排序。
需要判断哪些灯光位于同一行,判断规则是两个灯光的纵坐标差是否在基准灯光的半径范围内(即:nextLight.midY - currentLight.midY <= currentLight.rad)。
处理步骤:
输入解析:通过 readline 持续读取输入,直到读取到所有的灯光数据。
数据转换:解析每个灯光的坐标信息,计算每个灯光的圆心坐标(midX, midY)和半径(rad)。
排序逻辑:
纵坐标排序:按 midY 排序,确保灯光按照从上到下的顺序排列。
同一行的灯光判断:判断灯光是否在同一行,如果在同一行,则将它们按横坐标 midX 排序,输出灯光的 id。
输出结果:每次处理完一行灯光后,输出该行灯光的 id,最后输出所有灯光的排序结果。
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let data = [];
let numberOfLights;
rl.on("line", (line) => {
data.push(line);
if (data.length === 1) {
numberOfLights = parseInt(data[0]);
}
if (numberOfLights && data.length === numberOfLights + 1) {
data.shift();
const lights = data.map((str) => {
const [id, x1, y1, x2, y2] = str.split(" ").map(Number);
return {
id,
midX: (x1 + x2) / 2,
midY: (y1 + y2) / 2,
rad: (x2 - x1) / 2
};
});
console.log(computeOrder(lights));
data = [];
}
});
function computeOrder(lightArray) {
lightArray.sort((lightA, lightB) => lightA.midY - lightB.midY);
const finalOrder = [];
let rowLights = [];
let currentLight = lightArray[0];
rowLights.push(currentLight);
for (let i = 1; i < lightArray.length; i++) {
const nextLight = lightArray[i];
if (nextLight.midY - currentLight.midY <= currentLight.rad) {
rowLights.push(nextLight);
} else {
finalizeRow(rowLights, finalOrder);
rowLights = [nextLight];
currentLight = nextLight;
}
}
if (rowLights.length > 0) {
finalizeRow(rowLights, finalOrder);
}
return finalOrder.join(" ");
}
function finalizeRow(row, result) {
row.sort((a, b) => a.midX - b.midX).forEach((light) => result.push(light.id));
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 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
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: