- 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
java解法
- 解题思路
- 解题思路
本题的核心任务是模拟消息发布者和订阅者之间的消息传递。给定两组数组,分别表示发布者的消息时间和内容,订阅者的订阅时间和退订时间。我们需要根据每个发布者发布消息的时间和每个订阅者的订阅和退订时间,判断每个订阅者能够接收到哪些消息。
解决步骤:
输入数据:
msgArr:包含发布者的消息时间和内容,每两个数表示一个发布者发布消息的时间和消息内容。
consArr:包含订阅者的订阅时间和退订时间,每两个数表示一个订阅者的订阅时间和退订时间。
整理数据:
将 msgArr 按照每对时间和内容整理成二维数组 msgs,每个元素是一个长度为2的数组,存储消息的时间和内容。
将 consArr 按照每对订阅时间和退订时间整理成二维数组 consumers,每个元素是一个长度为2的数组,存储订阅时间和退订时间。
消息排序:
将消息按时间升序排列,这样可以确保我们按照发布顺序处理消息。
模拟消息传递:
对于每个消息,检查所有订阅者的有效订阅期(订阅时间小于等于消息时间且退订时间大于等于消息时间)。如果符合条件,订阅者接收到该消息,记录该消息。
输出结果:
对每个订阅者,输出其接收到的消息内容。如果订阅者没有接收到任何消息,输出 -1
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;
import java.util.StringJoiner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int[] msgArr = Arrays.stream(scanner.nextLine().split(" ")).mapToInt(Integer::parseInt).toArray();
int[] consArr = Arrays.stream(scanner.nextLine().split(" ")).mapToInt(Integer::parseInt).toArray();
processMessages(msgArr, consArr);
}
public static void processMessages(int[] msgArr, int[] consArr) {
int msgLen = msgArr.length;
int consLen = consArr.length;
int[][] msgs = new int[msgLen / 2][];
int i = 0;
int mIdx = 0;
while (i < msgLen) {
msgs[mIdx++] = new int[] {msgArr[i], msgArr[i + 1]};
i += 2;
}
int[][] consumers = new int[consLen / 2][];
int j = 0;
int cIdx = 0;
while (j < consLen) {
consumers[cIdx++] = new int[] {consArr[j], consArr[j + 1]};
j += 2;
}
Arrays.sort(msgs, (x, y) -> x[0] - y[0]);
ArrayList<ArrayList<Integer>> receivedMsgs = new ArrayList<>();
for (int k = 0; k < consumers.length; k++) {
receivedMsgs.add(new ArrayList<>());
}
int pubIdx = 0;
while (pubIdx < msgs.length) {
int msgTime = msgs[pubIdx][0];
int msgContent = msgs[pubIdx][1];
int subIdx = consumers.length - 1;
while (subIdx >= 0) {
int subTime = consumers[subIdx][0];
int unsubTime = consumers[subIdx][1];
if (msgTime >= subTime && msgTime < unsubTime) {
receivedMsgs.get(subIdx).add(msgContent);
break;
}
subIdx--;
}
pubIdx++;
}
int idx = 0;
while (idx < receivedMsgs.size()) {
ArrayList<Integer> contentList = receivedMsgs.get(idx);
if (contentList.isEmpty()) {
System.out.println("-1");
} else {
StringJoiner sj = new StringJoiner(" ");
for (int content : contentList) {
sj.add(Integer.toString(content));
}
System.out.println(sj.toString());
}
idx++;
}
}
}
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
- 90
- 91
C++解法
- 解题思路
- 解题思路
本题的核心任务是模拟消息队列和订阅者队列的操作,依据每个消息的发送时间和每个订阅者的有效订阅时间判断哪些订阅者能接收到哪些消息。我们将给定的消息和订阅者信息通过排序和检查进行处理,最终输出每个订阅者接收到的消息内容。
解决步骤:
数据解析:
输入包含两行数据:一行表示消息发布者的消息和时间,另一行表示订阅者的订阅和退订时间。我们需要解析这两行数据,并分别存储为 msgArray 和 subArray。
消息和订阅者处理:
将 msgArray 和 subArray 分别处理成 messageQueue 和 subscriptionQueue。每个队列中的元素是一个时间和内容的对(pair),分别代表消息的发送时间和内容,订阅者的订阅时间和退订时间。
排序:
按消息的发送时间对 messageQueue 进行排序,这样可以确保我们按照时间顺序处理消息。
消息分发:
遍历所有消息并检查每个消息是否在某个订阅者的有效订阅时间范围内。如果是,订阅者接收到该消息,并将该消息存储到订阅者对应的接收队列中。
输出结果:
对每个订阅者,输出其接收到的所有消息。如果没有接收到任何消息,输出 -1
#include
#include
#include
#include
using namespace std;
void processQueue(const vector<int>& msgArray, const vector<int>& subArray) {
vector<pair<int, int>> messageQueue;
for (int i = 0; i < msgArray.size(); i += 2) {
messageQueue.push_back({ msgArray[i], msgArray[i + 1] });
}
vector<pair<int, int>> subscriptionQueue;
for (int i = 0; i < subArray.size(); i += 2) {
subscriptionQueue.push_back({ subArray[i], subArray[i + 1] });
}
sort(messageQueue.begin(), messageQueue.end(), [](const pair<int, int>& a, const pair<int, int>& b) {
return a.first < b.first;
});
vector<vector<int>> receivedMessages(subscriptionQueue.size());
for (const auto& [sendTime, message] : messageQueue) {
for (int i = subscriptionQueue.size() - 1; i >= 0; --i) {
const auto& [subscribeTime, unsubscribeTime] = subscriptionQueue[i];
if (sendTime >= subscribeTime && sendTime < unsubscribeTime) {
receivedMessages[i].push_back(message);
break;
}
}
}
for (const auto& msgs : receivedMessages) {
if (msgs.empty()) {
cout << "-1" << endl;
}
else {
for (size_t i = 0; i < msgs.size(); ++i) {
if (i > 0) cout << " ";
cout << msgs[i];
}
cout << endl;
}
}
}
int main() {
string line;
vector<int> msgArray, subArray;
getline(cin, line);
stringstream ss1(line);
int num;
while (ss1 >> num) {
msgArray.push_back(num);
}
getline(cin, line);
stringstream ss2(line);
while (ss2 >> num) {
subArray.push_back(num);
}
processQueue(msgArray, subArray);
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
C解法
数据输入与解析:
输入的消息与订阅数据分别是两个数组。每个消息由一个时间戳和一个内容组成,订阅者由一个订阅开始时间和一个订阅结束时间组成。
我们首先读取输入数据,将其解析成适当的数据结构。
排序:
将消息按照时间戳升序排序。这样可以确保我们按时间的顺序处理消息,确保消息发送的先后顺序正确。
消息分发:
遍历所有的消息,检查它是否在某个订阅者的有效订阅时间内。如果是,订阅者接收到该消息,并将其添加到订阅者的消息列表中。
输出结果:
对每个订阅者,输出其接收到的所有消息。如果没有接收到任何消息,则输出 -1
#include
#include
typedef struct {
int time;
int content;
} Pub;
typedef struct {
int subTime;
int unSubTime;
int *messages;
int count;
} Sub;
int comparePub(const void* a, const void* b) {
return ((Pub *)a)->time - ((Pub *)b)->time;
}
int main() {
int pubArr[200], subArr[20];
int pubCount = 0, subCount = 0;
while (scanf("%d", &pubArr[pubCount]) != EOF) {
pubCount++;
if (getchar() == '\n') break;
}
while (scanf("%d", &subArr[subCount]) != EOF) {
subCount++;
if (getchar() == '\n') break;
}
int n = pubCount / 2;
int m = subCount / 2;
Pub pubs[n];
Sub subs[m];
for (int i = 0, j = 0; i < n; i++, j += 2) {
pubs[i].time = pubArr[j];
pubs[i].content = pubArr[j + 1];
}
for (int i = 0, j = 0; i < m; i++, j += 2) {
subs[i].subTime = subArr[j];
subs[i].unSubTime = subArr[j + 1];
subs[i].messages = (int *)malloc(n * sizeof(int));
subs[i].count = 0;
}
qsort(pubs, n, sizeof(Pub), comparePub);
for (int i = 0; i < n; i++) {
int time = pubs[i].time;
int content = pubs[i].content;
for (int j = m - 1; j >= 0; j--) {
if (time >= subs[j].subTime && time < subs[j].unSubTime) {
subs[j].messages[subs[j].count++] = content;
break;
}
}
}
for (int i = 0; i < m; i++) {
if (subs[i].count == 0) {
printf("-1\n");
} else {
for (int j = 0; j < subs[i].count; j++) {
if (j > 0) printf(" ");
printf("%d", subs[i].messages[j]);
}
printf("\n");
}
free(subs[i].messages);
}
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
- 90
- 91
- 92
- 93
- 94
- 95
- 96
JS解法
数据输入:
第一行输入消息数据,每对数据由发送时间和消息内容组成。
第二行输入订阅者数据,每对数据由订阅开始时间和退订时间组成。
排序:
将消息按照时间顺序排序,确保消息按发送时间处理。
消息分发:
对每个消息,检查它是否在某个订阅者的订阅时间范围内。如果在范围内,订阅者接收到该消息。
输出结果:
对每个订阅者,输出其接收到的所有消息。如果没有接收到任何消息,则输出 -1
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const inputs = [];
rl.on("line", (line) => {
inputs.push(line);
if (inputs.length === 2) {
const msgArray = inputs[0].split(" ").map(Number);
const subArray = inputs[1].split(" ").map(Number);
processQueue(msgArray, subArray);
inputs.length = 0;
}
});
function processQueue(msgArray, subArray) {
const messageQueue = [];
for (let i = 0; i < msgArray.length; i += 2) {
messageQueue.push([msgArray[i], msgArray[i + 1]]);
}
const subscriptionQueue = [];
for (let j = 0; j < subArray.length; j += 2) {
subscriptionQueue.push([subArray[j], subArray[j + 1]]);
}
messageQueue.sort((a, b) => a[0] - b[0]);
const receivedMessages = new Array(subscriptionQueue.length).fill(0).map(() => []);
for (let [sendTime, message] of messageQueue) {
for (let i = subscriptionQueue.length - 1; i >= 0; i--) {
let [subscribeTime, unsubscribeTime] = subscriptionQueue[i];
if (sendTime >= subscribeTime && sendTime < unsubscribeTime) {
receivedMessages[i].push(message);
break;
}
}
}
receivedMessages.forEach((msgs) => {
if (msgs.length === 0) {
console.log("-1");
} else {
console.log(msgs.join(" "));
}
});
}
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
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: