当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3836:P2P File Sharing System

题目描述
Peer-to-peer(P2P) computing technology has been widely used on the Internet to exchange data. A lot of P2P file sharing systems exist and gain much popularity in nowadays.

Let's consider a simplified model of P2P file sharing system: There are many computers in the system, and they can receive data from or send data to others. To simplify the problem, let's assume that there is just ONE large file which is of our concern in the system. Some computers already have the whole file (we call them "servers") and some don't(we call them "clients"). Every client needs to download the file from servers. When a client gets the WHOLE file, it becomes a server.

These computers are not always online. An online client will down load the file from all online servers. Different servers send data of different parts of the file to a client, so the client can download the file faster.

Now given the transfer speed between each pair of computers, what time is every computer online or offline, and which computers are servers at the beginning, please analyze the running of the system in a period of time.
输入解释
The first line contains an integer indicating the number of test cases.


For each test case:

Line 1: It contains two positive integers: n and T (n <= 20, T <= 1000) meaning that there are n computers in the system numbered from 1 to n, and you task is to figure out that how many percentage of the file does every computer gets after T seconds from the beginning.

Line 2: It contains two positive integers: k and S (k <= n, S <= 220) meaning that at the beginning there are k servers, and the size of the file of our concern is S (KB).

Line 3: It contains k integers. It's a list of all servers' No.

Line 4 ~ n+3: These n lines form a matrix of size n x n. The j-th integer in the i-th row of the matrix represents the transfer speed (in KB/s, no more than 210) between computer i and computer j (i and j start from 1). The matrix is symmetrical and the integers on the diagonal are meaningless.

Line n+4 ~ 2n+3: Each line contains an online/offline pattern for a computer in the following format (These lines are in the ascending order of computer No.):

t online_time1 offline_time1 online_time2 offline_time2...online_timet offline_timet


t is an integer no more than 10 and the time given are all non-negative integers and in ascending order. During the time between online_timei and offline_timei, the computer is online and can download data from other computers or send data to other computers.

Line 2n+4: It contains one positive integer m, representing the number of download actions in the system.

Line 2n+5 ~ 2n+m+4: Each line contains two integers representing a download action in the following format:

download_timei computer_idi


At time download_timei, the computer_idi computer starts to download the file, where 0 <= download_timei <= T, 1 <= computer_idi <= n.

These lines are given in non-descending order of time. It's guaranteed that servers never try to download the file. It's ensured that at time download_timei the computer computer_idi is online (Though it's possible that it instantly go offline after issuing a download command).

When a client starts to download, it will try to connect to all servers and download data simultaneously from online servers. The client's download speed is the sum of all connections. We assume the construction of a connection to be instant and cost no time. Only data transfer is time consuming.

When a client goes offline, unfinished download task will be saved and continued when it's online next time. If a server goes online, all computers that are currently downloading will connect to it and download data from it. What's more, when a client becomes a server, it begins to send data to clients immediately.


NOTE: To simplify the problem, time used to download a file should be rounded up to integer (If the file size is 6KB and download speed is 5KB/s, the download task will cost 2 seconds instead of 1.2 seconds -- 5KB for the first second and 1KB for the next second).

Please note that all times given above are in seconds.
输出解释
For each test case, the output should contain n lines, each for a computer.

The i-th line contains a percentage indicating the amount of data the i-th computer gets after T seconds from the beginning, in the format: 'percentage%'. The percentage should be rounded down to integer.
输入样例
Sample input #1:

1
2 50
1 1024
1
0 10
10 0
1 0 50
1 10 40
1
10 2


Sample input #2

1
4 500
2 200
2 3
0 1 1 1
1 0 1 1
1 1 0 1
1 1 1 0
2 0 200 300 500
1 100 200
1 200 400
1 301 500
2
0 1
301 4
输出样例
Sample output #1:

100%
29%


Sample output #2:

100%
100%
100%
99%
提示
There are 2 computers. The file size is 1024 KB and Computer 1 is a server at the beginning. At time 10, computer 2 start to download that file from computer 1 until it goes offline at time 40. Totally 10KB/s x 30s = 300KB is downloaded. 300/1024 __poj_jax_start__\approx__poj_jax_end__\approx 29%.

该题目是Virtual Judge题目,来自 北京大学POJ

题目来源 Ningbo 2009

源链接: POJ-3836

最后修改于 2020-10-29T07:13:23+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 65536