Orig Description
Problem B: Analyzing Login/Logout Records
You have a computer literacy course in your university. In the computer
system, the login/logout records of all PCs in a day are stored in a
file. Although students may use two or more PCs at a time, no one can
log in to a PC which has been logged in by someone who has not
logged out of that PC yet.
You are asked to write a program that calculates the total time of a
student that he/she used at least one PC in a given time period
(probably in a laboratory class) based on the records in the file.
The following are example login/logout records.
The student 1 logged in to the PC 1 at 12:55
The student 2 logged in to the PC 4 at 13:00
The student 1 logged in to the PC 2 at 13:10
The student 1 logged out of the PC 2 at 13:20
The student 1 logged in to the PC 3 at 13:30
The student 1 logged out of the PC 1 at 13:40
The student 1 logged out of the PC 3 at 13:45
The student 1 logged in to the PC 1 at 14:20
The student 2 logged out of the PC 4 at 14:30
The student 1 logged out of the PC 1 at 14:40
For a query such as "Give usage of the student 1 between 13:00 and
14:30", your program should answer "55 minutes", that is, the sum of
45 minutes from 13:00 to 13:45 and 10 minutes from 14:20 to 14:30, as
depicted in the following figure.
Input
The input is a sequence of a number of datasets.
The end of the input is indicated by a line containing two zeros
separated by a space.
The number of datasets never exceeds 10.
Each dataset is formatted as follows.
N M
r
record1
...
recordr
q
query1
...
queryq
The numbers N and M in the first line are the numbers of
PCs and the students, respectively. r is the number of
records. q is the number of queries. These four are integers
satisfying the following.
1 ≤ N ≤ 1000, 1 ≤ M ≤ 10000, 2 ≤ r ≤ 1000, 1 ≤ q ≤ 50
Each record consists of four integers, delimited by a space, as follows.
t n m s
s is 0 or 1.
If s is 1, this line means that the student m logged in
to the PC n at time t . If s is 0, it means that
the student m logged out of the PC n at time t .
The time is expressed as elapsed minutes from 0:00 of the day.
t , n and m satisfy the following.
540 ≤ t ≤ 1260,
1 ≤ n ≤ N , 1 ≤ m ≤ M
You may assume the following about the records.
Records are stored in ascending order of time t.
No two records for the same PC has the same time t.
No PCs are being logged in before the time of the first record
nor after that of the last record in the file.
Login and logout records for one PC appear alternatingly, and each of the login-logout record pairs is for the same student.
Each query consists of three integers delimited by a space, as follows.
ts te m
It represents "Usage of the student m between
ts and te ".
ts , te and m
satisfy the following.
540 ≤ ts < te ≤ 1260,
1 ≤ m ≤ M
Output
For each query, print a line having a decimal integer indicating the
time of usage in minutes. Output lines should not have any character
other than this number.
Sample Input
4 2
10
775 1 1 1
780 4 2 1
790 2 1 1
800 2 1 0
810 3 1 1
820 1 1 0
825 3 1 0
860 1 1 1
870 4 2 0
880 1 1 0
1
780 870 1
13 15
12
540 12 13 1
600 12 13 0
650 13 15 1
660 12 15 1
665 11 13 1
670 13 15 0
675 11 13 0
680 12 15 0
1000 11 14 1
1060 12 14 1
1060 11 14 0
1080 12 14 0
3
540 700 13
600 1000 15
1000 1200 11
1 1
2
600 1 1 1
700 1 1 0
5
540 600 1
550 650 1
610 620 1
650 750 1
700 800 1
0 0
Output for the Sample Input
55
70
30
0
0
50
10
50
0
Extracted Specification
An integer N (1 ≤ N ≤ 1000), representing some quantity or size.
An integer M (1 ≤ M ≤ 10000), representing some quantity or size.
An integer r (2 ≤ r ≤ 1000), representing some quantity or size.
A list of r tuples, each containing four integers t, n, m, s where:
- 540 ≤ t ≤ 1260
- 1 ≤ n ≤ N
- 1 ≤ m ≤ M
- s is either 0 or 1
An integer q (1 ≤ q ≤ 50), representing some quantity or size.
A list of q tuples, each containing three integers ts, te, m where:
- 540 ≤ ts < te ≤ 1260
- 1 ≤ m ≤ M
### Example Input:
```
4 2
10
775 1 1 1
780 4 2 1
790 2 1 1
800 2 1 0
810 3 1 1
820 1 1 0
825 3 1 0
860 1 1 1
870 4 2 0
880 1 1 0
1
780 870 1
```
### Function Signature:
Write a function f(inputs) that takes in the input.
def f(inputs: List[Tuple[int, int, int, List[Tuple[int, int, int, int]], int, List[Tuple[int, int, int]]]]):
'''
inputs: a list of tuples where each tuple contains:
- A tuple of three integers (N, M, r)
- A list of r tuples each containing four integers (t, n, m, s)
- An integer q
- A list of q tuples each containing three integers (ts, te, m)
'''
Test Case Generator
Sure, I can help you write a test case generator for the given problem statement. Here is a Python function that generates random test cases for the "Analyzing Login/Logout Records" problem:
```python
import random
def generate_time():
# Generating a random time between 540 (9:00 AM) and 1260 (9:00 PM)
return random.randint(540, 1260)
def generate_record(N, M):
t = generate_time()
n = random.randint(1, N)
m = random.randint(1, M)
s = random.choice([0, 1])
return (t, n, m, s)
def generate_query(M):
ts = generate_time()
te = random.randint(ts + 1, 1260) # Ensure te is greater than ts
m = random.randint(1, M)
return (ts, te, m)
def tcgen():
datasets = []
number_of_datasets = random.randint(1, 10)
for _ in range(number_of_datasets):
N = random.randint(1, 1000) # Number of PCs
M = random.randint(1, 10000) # Number of students
r = random.randint(2, 1000) # Number of records
q = random.randint(1, 50) # Number of queries
records = []
for _ in range(r):
records.append(generate_record(N, M))
queries = []
for _ in range(q):
queries.append(generate_query(M))
datasets.append((N, M, r, records, q, queries))
return datasets
def print_test_case(datasets):
for dataset in datasets:
N, M, r, records, q, queries = dataset
print(f"{N} {M}")
print(r)
for record in records:
print(f"{record[0]} {record[1]} {record[2]} {record[3]}")
print(q)
for query in queries:
print(f"{query[0]} {query[1]} {query[2]}")
print("0 0")
# Generate and print a test case
datasets = tcgen()
print_test_case(datasets)
```
This test case generator does the following:
1. Randomly generates the number of datasets.
2. For each dataset, it randomly generates:
- The number of PCs (N).
- The number of students (M).
- The number of records (r).
- The number of queries (q).
3. Generates random records ensuring that the times are within the specified range and that the records are in ascending order of time.
4. Generates random queries within the specified time range.
Finally, it prints the generated test cases in the required format. You can modify the parameters and constraints as needed to suit your testing purposes.
Extract Arguments
def extract_arguments(fh):
datasets = []
while True:
# Read the first line of the dataset
N, M = map(int, fh.readline().strip().split())
if N == 0 and M == 0:
break
r = int(fh.readline().strip())
records = []
for _ in range(r):
records.append(tuple(map(int, fh.readline().strip().split())))
q = int(fh.readline().strip())
queries = []
for _ in range(q):
queries.append(tuple(map(int, fh.readline().strip().split())))
datasets.append((N, M, r, records, q, queries))
return datasets