27412023-01-19 23:00:35kristofVideójátékpython3Accepted 100/100833ms92764 KiB

#* Az az idő amely alatt megunom a játékot egyedül
MegunasiIdo = int(input())

#* Szüneteimnek száma, szüneteim range formában, listában
NEn = int(input())
LEn = []
for i in range(NEn):
    rawInput = list(map(int, input().split()))
    LEn.append(rawInput)

#* Barát szüneteinek száma, szünetei range formában, listában
NBarat = int(input())
LBarat = []

for i in range(NBarat):
    rawInput = list(map(int, input().split()))
    LBarat.append(rawInput)


#* Melyik indexnél tartok a listában (külön En, Barat)
IndexEn = IndexBarat = 0

#* Mostani unatkozas
UnatkozasMost = 0

#* Bal Ă©s jobb oldal a rangenek
b: int = 0
j: int = 0


EgyuttJatszottEgysegek = 0

while IndexEn < NEn and IndexBarat < NBarat:

    b = max(LEn[IndexEn][0], LBarat[IndexBarat][0])
    j = min(LEn[IndexEn][1], LBarat[IndexBarat][1])

    if j >= b and LEn[IndexEn][0] + MegunasiIdo >= LBarat[IndexBarat][0]:
        EgyuttJatszottEgysegek += j-b+1
        LEn[IndexEn][0] = j

    if LEn[IndexEn][1] < LBarat[IndexBarat][1]:
        IndexEn += 1
    else:
        IndexBarat += 1

print(EgyuttJatszottEgysegek)
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted17ms11380 KiB
2Accepted17ms11676 KiB
subtask210/10
3Accepted17ms11712 KiB
4Accepted17ms11960 KiB
5Accepted16ms12020 KiB
6Accepted16ms12028 KiB
7Accepted16ms12212 KiB
8Accepted17ms12372 KiB
9Accepted17ms12656 KiB
10Accepted17ms12516 KiB
11Accepted17ms12452 KiB
subtask320/20
12Accepted17ms12804 KiB
13Accepted17ms12860 KiB
14Accepted17ms12672 KiB
15Accepted18ms13180 KiB
16Accepted18ms13472 KiB
17Accepted20ms13436 KiB
18Accepted21ms13744 KiB
19Accepted25ms13756 KiB
20Accepted21ms13920 KiB
21Accepted23ms14156 KiB
22Accepted18ms13508 KiB
subtask430/30
23Accepted90ms21348 KiB
24Accepted270ms40640 KiB
25Accepted689ms84028 KiB
26Accepted833ms92428 KiB
27Accepted823ms92396 KiB
28Accepted319ms44788 KiB
29Accepted65ms19012 KiB
30Accepted64ms18528 KiB
31Accepted41ms16268 KiB
subtask540/40
32Accepted90ms21548 KiB
33Accepted291ms43588 KiB
34Accepted529ms65816 KiB
35Accepted699ms82984 KiB
36Accepted777ms92480 KiB
37Accepted787ms92764 KiB
38Accepted479ms64488 KiB
39Accepted563ms74084 KiB
40Accepted145ms29316 KiB
41Accepted221ms37288 KiB