LeetCode 1500. Design a File Sharing System(哈希map+优先队列)

文章目录

    • 1. 题目
    • 2. 解题

1. 题目

We will use a file-sharing system to share a very large file which consists of m small chunks with IDs from 1 to m.

When users join the system, the system should assign a unique ID to them. The unique ID should be used once for each user, but when a user leaves the system, the ID can be reused again.

Users can request a certain chunk of the file, the system should return a list of IDs of all the users who own this chunk. If the user receive a non-empty list of IDs, they receive the requested chunk successfully.

Implement the FileSharing class:

  • FileSharing(int m) Initializes the object with a file of m chunks.
  • int join(int[] ownedChunks): A new user joined the system owning some chunks of the file, the system should assign an id to the user which is the smallest positive integer not taken by any other user. Return the assigned id.
  • void leave(int userID): The user with userID will leave the system, you cannot take file chunks from them anymore.
  • int[] request(int userID, int chunkID): The user userID requested the file chunk with chunkID. Return a list of the IDs of all users that own this chunk sorted in ascending order.

Follow-ups:

  • What happens if the system identifies the user by their IP address instead of their unique ID and users disconnect and connect from the system with the same IP?
  • If the users in the system join and leave the system frequently without requesting any chunks, will your solution still be efficient?
  • If all each user join the system one time, request all files and then leave, will your solution still be efficient?
  • If the system will be used to share n files where the ith file consists of m[i], what are the changes you have to do?

Example:

Input:
["FileSharing","join","join","join","request","request","leave","request","leave","join"]
[[4],[[1,2]],[[2,3]],[[4]],[1,3],[2,2],[1],[2,1],[2],[[]]]
Output:
[null,1,2,3,[2],[1,2],null,[],null,1]
Explanation:
FileSharing fileSharing = new FileSharing(4); 
// We use the system to share a file of 4 chunks.fileSharing.join([1, 2]);    
// A user who has chunks [1,2] joined the system, assign id = 1 to them and return 1.fileSharing.join([2, 3]);    
// A user who has chunks [2,3] joined the system, assign id = 2 to them and return 2.fileSharing.join([4]);       
// A user who has chunk [4] joined the system, assign id = 3 to them and return 3.fileSharing.request(1, 3);   
// The user with id = 1 requested the third file chunk, as only the user with id = 2 has the file, return [2] . Notice that user 1 now has chunks [1,2,3].fileSharing.request(2, 2);   
// The user with id = 2 requested the second file chunk, users with ids [1,2] have this chunk, thus we return [1,2].fileSharing.leave(1);        
// The user with id = 1 left the system, all the file chunks with them are no longer available for other users.fileSharing.request(2, 1);   
// The user with id = 2 requested the first file chunk, no one in the system has this chunk, we return empty list [].fileSharing.leave(2);        
// The user with id = 2 left the system.fileSharing.join([]);        
// A user who doesn't have any chunks joined the system, assign id = 1 to them and return 1. Notice that ids 1 and 2 are free and we can reuse them.Constraints:
1 <= m <= 10^5
0 <= ownedChunks.length <= min(100, m)
1 <= ownedChunks[i] <= m
Values of ownedChunks are unique.
1 <= chunkID <= m
userID is guaranteed to be a user in the system if you assign the IDs correctly. 
At most 10^4 calls will be made to join, leave and request.
Each call to leave will have a matching call for join.

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/design-a-file-sharing-system
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

class FileSharing {priority_queue<int,vector<int>,greater<int>> numCanBeUsed;//小号优先unordered_map<int,set<int>> user_file;unordered_map<int,set<int>> file_user;
public:FileSharing(int m) {for(int i = 1; i <= m; ++i)numCanBeUsed.push(i);}int join(vector<int> ownedChunks) {if(numCanBeUsed.empty()) return -1;int id = numCanBeUsed.top();//取号numCanBeUsed.pop();for(int f : ownedChunks){user_file[id].insert(f);file_user[f].insert(id);}return id;}void leave(int userID) {numCanBeUsed.push(userID);//号放回for(int f : user_file[userID])file_user[f].erase(userID);user_file.erase(userID);}vector<int> request(int userID, int chunkID) {vector<int> ans(file_user[chunkID].begin(), file_user[chunkID].end());if(!ans.empty() && !user_file[userID].count(chunkID)){	//如果文件存在,且 该用户没有该文件user_file[userID].insert(chunkID);file_user[chunkID].insert(userID);}return ans;}
};

1256 ms 140.3 MB


我的CSDN博客地址 https://michael.blog.csdn.net/

长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!
Michael阿明

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/474691.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mupdf java_mupdf库学习

http://macleo.iteye.com/blog/1544948Java代码freetye-config --cflags2.C语言的用处其实还是很大的....C也一样&#xff0c;不经意处C语言还在发挥着巨大的作用3.踏破铁鞋无觅处啊http://zhiweiofli.iteye.com/blog/9050694.Bitmap旋转http://blog.sina.com.cn/s/blog_625def…

Centos或者Redhet开通telnet

我参考了两篇文章&#xff1a; 1、51cto的这篇最全&#xff1a; http://blog.chinaunix.net/uid-21134884-id-3015272.html 2、本园子里面的&#xff1a; http://www.cnblogs.com/xlmeng1988/archive/2012/04/24/telnet-server.html转载于:https://www.cnblogs.com/diyunpeng/a…

LeetCode 425. 单词方块(Trie树+DFS)

文章目录1. 题目2. 解题1. 题目 给定一个单词集合 &#xff08;没有重复&#xff09;&#xff0c;找出其中所有的 单词方块 。 一个单词序列形成了一个有效的单词方块的意思是指从第 k 行和第 k 列 (0 ≤ k < max(行数, 列数)) 来看都是相同的字符串。 例如&#xff0c;单…

python numpy pandas 书 全_用Python做数据分析,Numpy,Pandas,matp

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼用Python做数据分析&#xff0c;Numpy&#xff0c;Pandas&#xff0c;matplotlib是怎么也绕不开的三个包&#xff0c;我最开始学习pandas是看的《利用Python进行数据分析》&#xff0c;看了好几遍&#xff0c;不是从头到尾看了好几…

打开约束指令,让编码更规范

如果你使用perl5.12 或更高的版本&#xff0c;可以显示的指定当前Perl版本号来自动打开约束指令。 use 5.012; #自动启用use strict 指令 之前的版本通过添加下边这句话 use strict; 通过启用约束指令&#xff0c;编程时常见的错误很容易暴露出来。 而启用warnings指令的话&…

LeetCode 642. 设计搜索自动补全系统(Trie树)

文章目录1. 题目2. 解题1. 题目 为搜索引擎设计一个搜索自动补全系统。 用户会输入一条语句&#xff08;最少包含一个字母&#xff0c;以特殊字符 ‘#’ 结尾&#xff09;。 除 ‘#’ 以外用户输入的每个字符&#xff0c;返回历史中热度前三并以当前输入部分为前缀的句子。下面…

python 动漫卡通人物图片大全_用Python把人物头像动漫化,不同的表情给你不同的惊喜...

前言最近上网冲浪的时候看到了一个有趣的东西&#xff0c;叫做『人物动漫化』&#xff0c;作为老大的粉丝&#xff0c;怎么可能放过这个机会&#xff0c;让我们先看看效果图&#xff1a;这就是这次要用Python搞的事情啦&#xff0c;我们会利用百度AI的人物动漫化技术&#xff0…

linux 命令学习记录

文件操作 chown -R user file 修改文件所有者chmod -R 777 file 修改文件权限wrxmkdir -p dir1/dir2/dir3 创建目录rmdir -p dir1/dir2/dir3 删除目录&#xff08;目录为空&#xff09;cp source target 复制source到targetcp -s source target 创建target 软链接到source &…

“后见之明”是冰冷刻薄的讥讽;这是一种病,得治。

我最讨厌的一类人就是&#xff0c;“嗯&#xff0c;我早就说过吧”、“你看&#xff0c;我没说错吧”。这不是高明&#xff0c;而是无耻无德无道无义。你早知 道为什么不说&#xff1f;你早发现为什么不阻止&#xff1f;你早有能耐为什么到现在才和我扯淡&#xff1f;“后见之明…

LeetCode MySQL 1264. 页面推荐(union)

文章目录1. 题目2. 解题1. 题目 朋友关系列表&#xff1a; Friendship ------------------------ | Column Name | Type | ------------------------ | user1_id | int | | user2_id | int | ------------------------ 这张表的主键是 (user1_id, use…

java从1开始计时用线程_java – Python – 线程,计时或函数使用?

我正在制定一个关于如何解决这个问题的想法.请帮忙.我的项目包含一个N x N网格,其中包含一系列块,这些块应该在随机方向和随机速度内移动(每隔0.1秒,块的位置用速度更新).我有三个“特殊”块,预计会有各自的移动功能.我将有其他块(其中许多)除了更新它们的位置之外什么都不做,并…

LeetCode MySQL 1070. 产品销售分析 III(group by 陷阱)

文章目录1. 题目2. 解题1. 题目 销售表 Sales&#xff1a; -------------------- | Column Name | Type | -------------------- | sale_id | int | | product_id | int | | year | int | | quantity | int | | price | int | -------------…

java中excel文件导入数据库中_〖JAVE经验〗java中Excel导入数据库里

1 从Excel文件读取数据表 Java Excel API既可以从本地文件系统的一个文件(.xls)&#xff0c;也可以从输入流中读取Excel数据表。读取Excel数据表的第一步是创建Workbook(术语&#xff1a;工作薄)&#xff0c;下面的代码片段举例说明了应该如何操作&#xff1a;(完整代码见Excel…

怎样在方框里打钩?

打开Microsoft Office Word 2003文档&#xff0c;鼠标单击菜单栏“插入”下拉菜单中的“符号”&#xff0c;选择“符号”对话框中的“符号”标签&#xff0c;在“字体”中选择“Wingdings 2”&#xff0c;即可在众多符号中找到“方框里面打钩的符号”。转载于:https://www.cnbl…

LeetCode MySQL 1364. 顾客的可信联系人数量

文章目录1. 题目2. 解题1. 题目 顾客表&#xff1a;Customers ------------------------ | Column Name | Type | ------------------------ | customer_id | int | | customer_name | varchar | | email | varchar | ------------------------ customer_…

JS控制锚点打开新窗口

在XHTML中不能含有TARGET&#xff0c;那么要使链接打开新窗口的话&#xff0c; 如果针对页面上所有锚点&#xff0c;JAVASCRIPT如下即可&#xff1a; function externalLinks() {if (!document.getElementsByTagName) return;var anchors document.getElementsByTagName("…

java showinputdialog_java - JOptionPane.showInputDialog中的多个输入

有没有一种方法可以在JOptionPane.showInputDialog中创建多个输入&#xff0c;而不是只创建一个输入&#xff1f;最佳答案&#xff1a;对。您知道可以将任何Object放入大多数Object的JOptionPane.showXXX methods参数中&#xff0c;并且经常会发现Object恰好是一个JPanel参数。…

LeetCode MySQL 602. 好友申请 II :谁有最多的好友(union all)

文章目录1. 题目2. 解题1. 题目 在 Facebook 或者 Twitter 这样的社交应用中&#xff0c;人们经常会发好友申请也会收到其他人的好友申请。 表 request_accepted 存储了所有好友申请通过的数据记录&#xff0c;其中&#xff0c; requester_id 和 accepter_id 都是用户的编号。…

用async 解放你的大脑

在js中&#xff0c;代码嵌套和代码回调非常常见&#xff0c;不仅编写麻烦而且异常反人类。让我等码农很是头痛 function () {function () {function () {function () {//pass}}} }这是一个常规的嵌套&#xff0c;如果每个function 的逻辑处理都比较多的话&#xff0c;会导致整个…

linux java 共享内存_Linux进程间通信之共享内存

一&#xff0c;共享内存内核管理一片物理内存&#xff0c;允许不同的进程同时映射&#xff0c;多个进程可以映射同一块内存&#xff0c;被多个进程同时映射的物理内存&#xff0c;即共享内存。映射物理内存叫挂接&#xff0c;用完以后解除映射叫脱接。1&#xff0c;共享内存的特…