朋友圈转发信息

2024-05-26 01:58
文章标签 转发 信息 朋友圈

本文主要是介绍朋友圈转发信息,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

朋友圈转发信息
描述:

在一个社交应用中,两个用户设定朋友关系后,则可以互相收到对方发布或转发的信息。当一个用户发布或转发一条信息时,他的所有朋友都能收到该信息。

 

现给定一组用户,及用户之间的朋友关系。

问:当某用户发布一条信息之后,为了让每个人都能在最早时间收到这条信息,这条信息最少需要被转发几次?

 

假设:对所有用户而言:

1)朋友发出信息到自己收到该信息的时延为TT>0);

2)如需转发,从收到信息到转发出信息的时延为0

 

用例保证:在给定的朋友圈关系中,任何人发布的信息总是能通过NN>=0)次转发让其他所有用户收到。

 

例如:

下图表示某个朋友圈关系(节点间连线表示朋友关系)中,用户1在时刻0发布信息之后,两种不同的转发策略。

黄色节点表示转发用户,蓝色数字为用户收到信息的时间

 

 

 

 

运行时间限制:无限制
内存限制:无限制
输入:

Sender

[消息创建者编号]

Relationship

[朋友关系列表,1,2 表示1和2是朋友关系]

End

 

如下:

Sender
1
Relationship
1,2
1,3
1,4
2,5
2,6
3,6
4,6
4,7
5,6
5,8
5,9
6,7
6,8
6,9
7,9
10,7
End

输出:

当某用户发布一条信息之后,为了让每个人都能在最早时间收到这条信息,这条信息最少需要被转发的次数

 

样例输入:
Sender
1
Relationship
1,2
1,3
1,4
2,5
2,6
3,6
4,6
4,7
5,6
5,8
5,9
6,7
6,8
6,9
7,9
10,7
End
样例输出:
4
答案提示:

 

这题还算是有点意思吧  主要包含了2个环节   1搞定最短路径  最短路径算法,由于路径长度都是一样的 所以还要简单一点   2 搞定能覆盖下一层的最小点数

这道题我写的时候思路有点不清楚,主要是在Map中 value值设置set对象的时候出了点问题,最后我选择使用了ArrayList代替,这样的话 其实在大数据的时候效率很低,这点需要优化,另外我是明确确定下一层没有重复节点,所以我用了list的containsAll  这点也是需要注意


另外题目有点问题    也就是没说节点的编号问题,所以我这里自己抽取转换了一下,建立了一个映射,这个会影响效率,但是感觉实际应用上会显得很有用

下面放源码


package 消息转发网络;import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Scanner;
import java.util.Set;//首先是来一遍最短路径算法  确定每个人距离根的最短路径
//根据最短路径可以获得一个层次树
//在每一层上选在能得到下一层所有点的最小组合
//得到结果public class Main {static int rootIndex; // 存放根指针// 建立顶点到index映射 ,用来消除顶点编号的不连续性static Map<Integer, Integer> vertexMaptoIndex;// 用index的形式保存边static Map<Integer, ArrayList<Integer>> directedEages;// 用来存层次深度static Map<Integer, ArrayList<Integer>> deepMaptoIndexs;static int maxDeep;public static void main(String[] args) {readData();Map<Integer, Integer> indexMaptoDeep = getShortestPathLength();loadDeepMaptoIndex(indexMaptoDeep);// Set<Integer> deeps = deepMaptoIndexs.keySet();// for(int deep : deeps){// ArrayList<Integer> indexs = deepMaptoIndexs.get(deep);// System.out.println("deep: "+deep);// for(int index : indexs){// System.out.print(index + "-");// }// System.out.println();// }// System.out.println(maxLayer);int result = 0;for (int i = 1; i < maxDeep; i++) {result += getMinSizeofCover(i);}System.out.println(result);}// 读入数据// 中间进行数据清理,来消除输入顶点编号的不连续性// 测试通过public static void readData() {Scanner in = new Scanner(System.in);in.next();// 读掉senderSet<Integer> vertexSet = new HashSet<Integer>();int rootVertex = in.nextInt();vertexSet.add(rootVertex);in.next();// 读掉RelationShipString temp = in.next();// 存储读入的边ArrayList<Integer> leftVertexs = new ArrayList<Integer>(20);ArrayList<Integer> rightVertexs = new ArrayList<Integer>(20);while (!temp.equals("End")) {String[] numberArray = temp.split(",");int leftnumber = Integer.parseInt(numberArray[0]);int rightnumber = Integer.parseInt(numberArray[1]);leftVertexs.add(leftnumber);rightVertexs.add(rightnumber);vertexSet.add(leftnumber);vertexSet.add(rightnumber);temp = in.next();}// 创建顶点到边的映射 同时初始化有向图vertexMaptoIndex = new HashMap<Integer, Integer>();directedEages = new HashMap<Integer, ArrayList<Integer>>();int count = 1;for (int vertex : vertexSet) {vertexMaptoIndex.put(vertex, count);directedEages.put(count, new ArrayList<Integer>(10));count++;}rootIndex = vertexMaptoIndex.get(rootVertex);// 生成有向图ArrayList<Integer> tempArrayList;for (int i = 0; i < leftVertexs.size(); i++) {int leftIndex = vertexMaptoIndex.get(leftVertexs.get(i));int rightIndex = vertexMaptoIndex.get(rightVertexs.get(i));tempArrayList = directedEages.get(leftIndex);tempArrayList.add(rightIndex);directedEages.put(leftIndex, tempArrayList);tempArrayList = directedEages.get(rightIndex);tempArrayList.add(leftIndex);directedEages.put(rightIndex, tempArrayList);}}// 得到最短路径// 测试通过public static Map<Integer, Integer> getShortestPathLength() {Map<Integer, Integer> ShortestPathLength = new HashMap<Integer, Integer>();ShortestPathLength.put(rootIndex, 0);Queue<Integer> waitedQueue = new LinkedList<Integer>();waitedQueue.add(rootIndex);while (waitedQueue.size() != 0) {int fromIndex = waitedQueue.remove();List<Integer> availableIndexs = directedEages.get(fromIndex);for (int toIndex : availableIndexs) {if (ShortestPathLength.get(toIndex) == null) {ShortestPathLength.put(toIndex,ShortestPathLength.get(fromIndex) + 1);waitedQueue.add(toIndex);}}}return ShortestPathLength;}private static void loadDeepMaptoIndex(Map<Integer, Integer> indexMaptoDeep) {Set<Integer> keys = indexMaptoDeep.keySet();deepMaptoIndexs = new HashMap<Integer, ArrayList<Integer>>();for (int key : keys) {int deep = indexMaptoDeep.get(key);if (deepMaptoIndexs.get(deep) == null) {deepMaptoIndexs.put(deep, new ArrayList<Integer>(20));maxDeep = maxDeep < deep ? deep : maxDeep;}ArrayList<Integer> indexs = deepMaptoIndexs.get(deep);indexs.add(key);deepMaptoIndexs.put(deep, indexs);}}// 在每一层上选在能得到下一层所有点的最小组合的顶点个数public static int getMinSizeofCover(int deep) {ArrayList<Integer> thisLayerIndexs = deepMaptoIndexs.get(deep);ArrayList<Integer> nextLayerIndexs = deepMaptoIndexs.get(deep + 1);// 包含的顶点Queue<ArrayList<Integer>> includedIndexsQueue = new LinkedList<ArrayList<Integer>>();// 对应的已经覆盖的顶点Queue<ArrayList<Integer>> availableIndexsQueue = new LinkedList<ArrayList<Integer>>();for (int i = 0; i < thisLayerIndexs.size(); i++) {ArrayList<Integer> includedIndexs = new ArrayList<Integer>();includedIndexs.add(i);ArrayList<Integer> availableIndexs = directedEages.get(thisLayerIndexs.get(i));if (availableIndexs.containsAll(nextLayerIndexs)) {return 1;} else {includedIndexsQueue.add(includedIndexs);availableIndexsQueue.add(availableIndexs);}}while (includedIndexsQueue.size() > 0) {//取出当前元组ArrayList<Integer> includedIndexs = includedIndexsQueue.remove();ArrayList<Integer> availableIndexs = availableIndexsQueue.remove();//插入一个新节点观察结果;int start = includedIndexs.get(includedIndexs.size()-1);for(int i = start+1 ; i < thisLayerIndexs.size();i++){ArrayList<Integer> newincludedIndexs= new ArrayList<Integer>(includedIndexs);ArrayList<Integer> newavailableIndexs =new ArrayList<Integer>(availableIndexs);newincludedIndexs.add(i);newavailableIndexs.addAll(directedEages.get(thisLayerIndexs.get(i)));if(newavailableIndexs.containsAll(nextLayerIndexs)){return newincludedIndexs.size();}else{includedIndexsQueue.add(newincludedIndexs);availableIndexsQueue.add(newavailableIndexs);}}}return thisLayerIndexs.size();}
}

这篇关于朋友圈转发信息的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1003244

相关文章

使用Python检查CPU型号并弹出警告信息

《使用Python检查CPU型号并弹出警告信息》本教程将指导你如何编写一个Python程序,该程序能够在启动时检查计算机的CPU型号,如果检测到CPU型号包含“I3”,则会弹出一个警告窗口,感兴趣的小... 目录教程目标方法一所需库步骤一:安装所需库步骤二:编写python程序步骤三:运行程序注意事项方法二

PostgreSQL如何查询表结构和索引信息

《PostgreSQL如何查询表结构和索引信息》文章介绍了在PostgreSQL中查询表结构和索引信息的几种方法,包括使用`d`元命令、系统数据字典查询以及使用可视化工具DBeaver... 目录前言使用\d元命令查看表字段信息和索引信息通过系统数据字典查询表结构通过系统数据字典查询索引信息查询所有的表名可

业务中14个需要进行A/B测试的时刻[信息图]

在本指南中,我们将全面了解有关 A/B测试 的所有内容。 我们将介绍不同类型的A/B测试,如何有效地规划和启动测试,如何评估测试是否成功,您应该关注哪些指标,多年来我们发现的常见错误等等。 什么是A/B测试? A/B测试(有时称为“分割测试”)是一种实验类型,其中您创建两种或多种内容变体——如登录页面、电子邮件或广告——并将它们显示给不同的受众群体,以查看哪一种效果最好。 本质上,A/B测

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti

Linux命令(11):系统信息查看命令

系统 # uname -a # 查看内核/操作系统/CPU信息# head -n 1 /etc/issue # 查看操作系统版本# cat /proc/cpuinfo # 查看CPU信息# hostname # 查看计算机名# lspci -tv # 列出所有PCI设备# lsusb -tv

【小迪安全笔记 V2022 】信息打点9~11

第9天 信息打点-CDN绕过篇&漏洞回链8接口探针&全网扫指&反向件 知识点: 0、CDN知识-工作原理及阻碍 1、CDN配置-域名&区域&类型 2、CDN绕过-靠谱十余种技战法 3、CDN绑定-HOSTS绑定指向访问 CDN 是构建在数据网络上的一种分布式的内容分发网。 CDN的作用是采用流媒体服务器集群技术,克服单机系统输出带宽及并发能力不足的缺点,可极大提升系统支持的并发流数目,减少或避

Weex入门教程之4,获取当前全局环境变量和配置信息(屏幕高度、宽度等)

$getConfig() 获取当前全局环境变量和配置信息。 Returns: config (object): 配置对象;bundleUrl (string): bundle 的 url;debug (boolean): 是否是调试模式;env (object): 环境对象; weexVersion (string): Weex sdk 版本;appName (string): 应用名字;

Python批量读取身份证信息录入系统和重命名

前言 大家好, 如果你对自动化处理身份证图片感兴趣,可以尝试以下操作:从身份证图片中快速提取信息,填入表格并提交到网页系统。如果你无法完成这个任务,我们将在“Python自动化办公2.0”课程中详细讲解实现整个过程。 实现过程概述: 模块与功能: re 模块:用于从 OCR 识别出的文本中提取所需的信息。 日期模块:计算年龄。 pandas:处理和操作表格数据。 PaddleOCR:百度的

linux上查看java最耗时的线程信息

找到JAVA进程pid ps -ef|grep java或则jps -mlv 找进行下耗时的线程TID 使用top -Hp pid可以查看某个进程的线程信息 -H 显示线程信息,-p指定pid top -Hp 10906 查看最耗时的 TID即线程id printf "%x\n" [tid] 转成16进制 java中的线程类相关信息 jstack 线程ID 可以查看某个线程的堆栈情况,特别对于h

在struts.xml中,如何配置请求转发和请求重定向!

<span style="font-size:18px;"><span style="white-space:pre"> </span><!--<strong>下面用请求转发action </strong>,<strong>这样过去id不会丢</strong>,如果用重定向的话,id会丢 --><result name="updatePopedom"<span style="color:#ff00