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;  // 步进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;  // 步进2个元素
        }

        // 按发布的时间对消息进行升序排序
        Arrays.sort(msgs, (x, y) -> x[0] - y[0]);

        // 创建一个 ArrayList 用于存储每个订阅者接收到的消息
        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");  // 如果没有接收到任何消息,输出 -1
            } else {
                // 使用 StringJoiner 格式化输出接收到的消息内容
                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"}">

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) {
    // Step 1: 构建消息队列,将msgArray解析成消息队列
    vector<pair<int, int>> messageQueue;
    for (int i = 0; i < msgArray.size(); i += 2) {
        messageQueue.push_back({ msgArray[i], msgArray[i + 1] });
        // 将每对消息时间和内容作为一对push到消息队列
    }

    // Step 2: 构建订阅者队列,将subArray解析成订阅者队列
    vector<pair<int, int>> subscriptionQueue;
    for (int i = 0; i < subArray.size(); i += 2) {
        subscriptionQueue.push_back({ subArray[i], subArray[i + 1] });
        // 将每对订阅时间和退订时间作为一对push到订阅者队列
    }

    // Step 3: 按消息的发送时间对消息队列进行升序排序
    sort(messageQueue.begin(), messageQueue.end(), [](const pair<int, int>& a, const pair<int, int>& b) {
        return a.first < b.first;  // 按时间升序排列
        });

    // Step 4: 为每个订阅者准备一个空的消息接收列表
    vector<vector<int>> receivedMessages(subscriptionQueue.size());

    // Step 5: 遍历消息队列,将消息分配给有效的订阅者
    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;  // 一旦找到了合适的订阅者,就停止查找
            }
        }
    }

    // Step 6: 输出每个订阅者接收到的消息
    for (const auto& msgs : receivedMessages) {
        if (msgs.empty()) {
            cout << "-1" << endl;  // 如果该订阅者没有接收到消息,输出-1
        }
        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;

    // Step 7: 读取并解析消息发布者的数据
    getline(cin, line);  // 读取第一行数据
    stringstream ss1(line);
    int num;
    while (ss1 >> num) {
        msgArray.push_back(num);  // 将消息数据存入msgArray
    }

    // Step 8: 读取并解析订阅者的数据
    getline(cin, line);  // 读取第二行数据
    stringstream ss2(line);
    while (ss2 >> num) {
        subArray.push_back(num);  // 将订阅者数据存入subArray
    }

    // Step 9: 处理消息队列和订阅队列
    processQueue(msgArray, subArray);

    return 0;
}

 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

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) {
            // 如果订阅者没有接收到任何消息,输出 -1
            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"}">

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");  // 如果订阅者没有接收到任何消息,输出 -1
    } else {
      console.log(msgs.join(" "));  // 输出接收到的所有消息,以空格分隔
    }
  });
}

 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

注意:

如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏

注:本文转载自blog.csdn.net的CodeClimb的文章"https://blog.csdn.net/CodeClimb/article/details/145065628"。版权归原作者所有,此博客不拥有其著作权,亦不承担相应法律责任。如有侵权,请联系我们删除。
复制链接

评论记录:

未查询到任何数据!