zmc
2023-12-22 9fdbf60165db0400c2e8e6be2dc6e88138ac719a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
U
Z±dqMã@s¤dZddlmZddlmZmZmZmZmZm    Z    ddl
m Z ddl m Z mZzddlmZmZmZWn(ek
rŒddlmZmZmZYnXGdd    „d    eeƒZd
S) aESorted Set
=============
 
:doc:`Sorted Containers<index>` is an Apache2 licensed Python sorted
collections library, written in pure-Python, and fast as C-extensions. The
:doc:`introduction<introduction>` is the best way to get started.
 
Sorted set implementations:
 
.. currentmodule:: sortedcontainers
 
* :class:`SortedSet`
 
é)Úchain)ÚeqÚneÚgtÚgeÚltÚle)Údedenté)Ú
SortedListÚrecursive_repr)Ú
MutableSetÚSequenceÚSetc@seZdZdZdHdd„ZedIdd„ƒZedd„ƒZd    d
„Z    d d „Z
d d„Z dd„Z e e ddƒZe eddƒZe eddƒZe eddƒZe eddƒZe eddƒZee ƒZ dd„Zdd „Zd!d"„Zd#d$„ZeZd%d&„Zd'd(„Z e Z!d)d*„Z"d+d,„Z#e#Z$dJd.d/„Z%d0d1„Z&d2d3„Z'e'Z(d4d5„Z)e)Z*d6d7„Z+e+Z,e,Z-d8d9„Z.e.Z/d:d;„Z0e0Z1e1Z2d<d=„Z3e3Z4d>d?„Z5e5Z6e6Z7d@dA„Z8e8Z9e8Z:dBdC„Z;e<ƒdDdE„ƒZ=dFdG„Z>dS)KÚ    SortedSetaûSorted set is a sorted mutable set.
 
    Sorted set values are maintained in sorted order. The design of sorted set
    is simple: sorted set uses a set for set-operations and maintains a sorted
    list of values.
 
    Sorted set values must be hashable and comparable. The hash and total
    ordering of values must not change while they are stored in the sorted set.
 
    Mutable set methods:
 
    * :func:`SortedSet.__contains__`
    * :func:`SortedSet.__iter__`
    * :func:`SortedSet.__len__`
    * :func:`SortedSet.add`
    * :func:`SortedSet.discard`
 
    Sequence methods:
 
    * :func:`SortedSet.__getitem__`
    * :func:`SortedSet.__delitem__`
    * :func:`SortedSet.__reversed__`
 
    Methods for removing values:
 
    * :func:`SortedSet.clear`
    * :func:`SortedSet.pop`
    * :func:`SortedSet.remove`
 
    Set-operation methods:
 
    * :func:`SortedSet.difference`
    * :func:`SortedSet.difference_update`
    * :func:`SortedSet.intersection`
    * :func:`SortedSet.intersection_update`
    * :func:`SortedSet.symmetric_difference`
    * :func:`SortedSet.symmetric_difference_update`
    * :func:`SortedSet.union`
    * :func:`SortedSet.update`
 
    Methods for miscellany:
 
    * :func:`SortedSet.copy`
    * :func:`SortedSet.count`
    * :func:`SortedSet.__repr__`
    * :func:`SortedSet._check`
 
    Sorted list methods available:
 
    * :func:`SortedList.bisect_left`
    * :func:`SortedList.bisect_right`
    * :func:`SortedList.index`
    * :func:`SortedList.irange`
    * :func:`SortedList.islice`
    * :func:`SortedList._reset`
 
    Additional sorted list methods available, if key-function used:
 
    * :func:`SortedKeyList.bisect_key_left`
    * :func:`SortedKeyList.bisect_key_right`
    * :func:`SortedKeyList.irange_key`
 
    Sorted set comparisons use subset and superset relations. Two sorted sets
    are equal if and only if every element of each sorted set is contained in
    the other (each is a subset of the other). A sorted set is less than
    another sorted set if and only if the first sorted set is a proper subset
    of the second sorted set (is a subset, but is not equal). A sorted set is
    greater than another sorted set if and only if the first sorted set is a
    proper superset of the second sorted set (is a superset, but is not equal).
 
    NcCsÂ||_t|dƒstƒ|_t|j|d|_|j}|j|_|j|_|j|_|j}|j    |_    |j
|_
|j |_ |j |_ |j |_ |j|_|j|_|dk    r¬|j|_|j|_|j|_|j|_|dk    r¾| |¡dS)aInitialize sorted set instance.
 
        Optional `iterable` argument provides an initial iterable of values to
        initialize the sorted set.
 
        Optional `key` argument defines a callable that, like the `key`
        argument to Python's `sorted` function, extracts a comparison key from
        each value. The default, none, compares values directly.
 
        Runtime complexity: `O(n*log(n))`
 
        >>> ss = SortedSet([3, 1, 2, 5, 4])
        >>> ss
        SortedSet([1, 2, 3, 4, 5])
        >>> from operator import neg
        >>> ss = SortedSet([3, 1, 2, 5, 4], neg)
        >>> ss
        SortedSet([5, 4, 3, 2, 1], key=<built-in function neg>)
 
        :param iterable: initial values (optional)
        :param key: function used to extract comparison key (optional)
 
        Ú_set©ÚkeyN)Ú_keyÚhasattrÚsetrr Ú_listÚ
isdisjointÚissubsetÚ
issupersetÚ bisect_leftÚbisectÚ bisect_rightÚindexZirangeÚisliceZ_resetZbisect_key_leftZbisect_key_rightZ
bisect_keyZ
irange_keyÚ_update)ÚselfÚiterablerrr©r#úQd:\z\workplace\vscode\pyvenv\venv\Lib\site-packages\sortedcontainers/sortedset.pyÚ__init__ls.
zSortedSet.__init__cCs t |¡}||_|j|d|S)ztInitialize sorted set from existing set.
 
        Used internally by set operations that return a new set.
 
        r)ÚobjectÚ__new__rr%)ÚclsÚvaluesrZ
sorted_setr#r#r$Ú_fromset«s
 zSortedSet._fromsetcCs|jS)zŠFunction used to extract comparison key from values.
 
        Sorted set compares values directly when the key function is none.
 
        )r©r!r#r#r$r¸sz SortedSet.keycCs
||jkS)aQReturn true if `value` is an element of the sorted set.
 
        ``ss.__contains__(value)`` <==> ``value in ss``
 
        Runtime complexity: `O(1)`
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> 3 in ss
        True
 
        :param value: search for value in sorted set
        :return: true if `value` in sorted set
 
        ©r©r!Úvaluer#r#r$Ú __contains__ÂszSortedSet.__contains__cCs
|j|S)aØLookup value at `index` in sorted set.
 
        ``ss.__getitem__(index)`` <==> ``ss[index]``
 
        Supports slicing.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> ss = SortedSet('abcde')
        >>> ss[2]
        'c'
        >>> ss[-1]
        'e'
        >>> ss[2:5]
        ['c', 'd', 'e']
 
        :param index: integer or slice for indexing
        :return: value or list of values
        :raises IndexError: if index out of range
 
        )r)r!rr#r#r$Ú __getitem__ÔszSortedSet.__getitem__cCsF|j}|j}t|tƒr*||}| |¡n||}| |¡||=dS)aÝRemove value at `index` from sorted set.
 
        ``ss.__delitem__(index)`` <==> ``del ss[index]``
 
        Supports slicing.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> ss = SortedSet('abcde')
        >>> del ss[2]
        >>> ss
        SortedSet(['a', 'b', 'd', 'e'])
        >>> del ss[:2]
        >>> ss
        SortedSet(['d', 'e'])
 
        :param index: integer or slice for indexing
        :raises IndexError: if index out of range
 
        N)rrÚ
isinstanceÚsliceÚdifference_updateÚremove)r!rrrr)r.r#r#r$Ú __delitem__ís
 
zSortedSet.__delitem__cs:‡fdd„}ˆj}d |¡|_d}t| |||¡ƒ|_|S)zMake comparator method.cs2t|tƒrˆ|j|jƒSt|tƒr.ˆ|j|ƒStS)z&Compare method for sorted set and set.)r1rrrÚNotImplemented)r!Úother©Úset_opr#r$Úcomparers
 
 
 z&SortedSet.__make_cmp.<locals>.comparerz__{0}__a3Return true if and only if sorted set is {0} `other`.
 
        ``ss.__{1}__(other)`` <==> ``ss {2} other``
 
        Comparisons use subset and superset semantics as with sets.
 
        Runtime complexity: `O(n)`
 
        :param other: `other` set
        :return: true if sorted set is {0} `other`
 
        )Ú__name__Úformatr    Ú__doc__)r9ÚsymbolÚdocr:Z set_op_nameZdoc_strr#r8r$Z
__make_cmp s    zSortedSet.__make_cmpz==zequal toz!=z not equal toú<za proper subset ofú>za proper superset ofz<=z a subset ofz>=z a superset ofcCs
t|jƒS)z|Return the size of the sorted set.
 
        ``ss.__len__()`` <==> ``len(ss)``
 
        :return: size of sorted set
 
        )Úlenrr+r#r#r$Ú__len__2szSortedSet.__len__cCs
t|jƒS)zìReturn an iterator over the sorted set.
 
        ``ss.__iter__()`` <==> ``iter(ss)``
 
        Iterating the sorted set while adding or deleting values may raise a
        :exc:`RuntimeError` or fail to iterate over all values.
 
        )Úiterrr+r#r#r$Ú__iter__=s    zSortedSet.__iter__cCs
t|jƒS)zûReturn a reverse iterator over the sorted set.
 
        ``ss.__reversed__()`` <==> ``reversed(ss)``
 
        Iterating the sorted set while adding or deleting values may raise a
        :exc:`RuntimeError` or fail to iterate over all values.
 
        )Úreversedrr+r#r#r$Ú __reversed__Is    zSortedSet.__reversed__cCs(|j}||kr$| |¡|j |¡dS)aAdd `value` to sorted set.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> ss = SortedSet()
        >>> ss.add(3)
        >>> ss.add(1)
        >>> ss.add(2)
        >>> ss
        SortedSet([1, 2, 3])
 
        :param value: value to add to sorted set
 
        N)rÚaddr©r!r.rr#r#r$rHUs
z SortedSet.addcCs|j ¡|j ¡dS)zPRemove all values from sorted set.
 
        Runtime complexity: `O(n)`
 
        N)rÚclearrr+r#r#r$rJls
zSortedSet.clearcCs|jt|jƒ|jdS)zwReturn a shallow copy of the sorted set.
 
        Runtime complexity: `O(n)`
 
        :return: new sorted set
 
        r)r*rrrr+r#r#r$ÚcopyvszSortedSet.copycCs||jkrdSdS)aReturn number of occurrences of `value` in the sorted set.
 
        Runtime complexity: `O(1)`
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> ss.count(3)
        1
 
        :param value: value to count in sorted set
        :return: count
 
        r
rr,r-r#r#r$Úcountƒs zSortedSet.countcCs(|j}||kr$| |¡|j |¡dS)aqRemove `value` from sorted set if it is a member.
 
        If `value` is not a member, do nothing.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> ss.discard(5)
        >>> ss.discard(0)
        >>> ss == set([1, 2, 3, 4])
        True
 
        :param value: `value` to discard from sorted set
 
        N©rr4rrIr#r#r$Údiscard“s
zSortedSet.discardéÿÿÿÿcCs|j |¡}|j |¡|S)aRemove and return value at `index` in sorted set.
 
        Raise :exc:`IndexError` if the sorted set is empty or index is out of
        range.
 
        Negative indices are supported.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> ss = SortedSet('abcde')
        >>> ss.pop()
        'e'
        >>> ss.pop(2)
        'c'
        >>> ss
        SortedSet(['a', 'b', 'd'])
 
        :param int index: index of value (default -1)
        :return: value
        :raises IndexError: if index is out of range
 
        )rÚpoprr4)r!rr.r#r#r$rP«s  z SortedSet.popcCs|j |¡|j |¡dS)aRemove `value` from sorted set; `value` must be a member.
 
        If `value` is not a member, raise :exc:`KeyError`.
 
        Runtime complexity: `O(log(n))` -- approximate.
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> ss.remove(5)
        >>> ss == set([1, 2, 3, 4])
        True
        >>> ss.remove(0)
        Traceback (most recent call last):
          ...
        KeyError: 0
 
        :param value: `value` to remove from sorted set
        :raises KeyError: if `value` is not in sorted set
 
        NrMr-r#r#r$r4Ès zSortedSet.removecGs|jj|Ž}|j||jdS)aïReturn the difference of two or more sets as a new sorted set.
 
        The `difference` method also corresponds to operator ``-``.
 
        ``ss.__sub__(iterable)`` <==> ``ss - iterable``
 
        The difference is all values that are in this sorted set but not the
        other `iterables`.
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> ss.difference([4, 5, 6, 7])
        SortedSet([1, 2, 3])
 
        :param iterables: iterable arguments
        :return: new sorted set
 
        r)rÚ
differencer*r)r!Ú    iterablesÚdiffr#r#r$rQàs zSortedSet.differencecGsf|j}|j}tt|Žƒ}dt|ƒt|ƒkrJ| |¡| ¡| |¡n|j}|D] }||ƒqT|S)ašRemove all values of `iterables` from this sorted set.
 
        The `difference_update` method also corresponds to operator ``-=``.
 
        ``ss.__isub__(iterable)`` <==> ``ss -= iterable``
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> _ = ss.difference_update([4, 5, 6, 7])
        >>> ss
        SortedSet([1, 2, 3])
 
        :param iterables: iterable arguments
        :return: itself
 
        é)    rrrrrBr3rJÚupdateÚ_discard)r!rRrrr)rVr.r#r#r$r3øs 
 
zSortedSet.difference_updatecGs|jj|Ž}|j||jdS)aøReturn the intersection of two or more sets as a new sorted set.
 
        The `intersection` method also corresponds to operator ``&``.
 
        ``ss.__and__(iterable)`` <==> ``ss & iterable``
 
        The intersection is all values that are in this sorted set and each of
        the other `iterables`.
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> ss.intersection([4, 5, 6, 7])
        SortedSet([4, 5])
 
        :param iterables: iterable arguments
        :return: new sorted set
 
        r)rÚ intersectionr*r)r!rRZ    intersectr#r#r$rWs zSortedSet.intersectioncGs,|j}|j}|j|Ž| ¡| |¡|S)aßUpdate the sorted set with the intersection of `iterables`.
 
        The `intersection_update` method also corresponds to operator ``&=``.
 
        ``ss.__iand__(iterable)`` <==> ``ss &= iterable``
 
        Keep only values found in itself and all `iterables`.
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> _ = ss.intersection_update([4, 5, 6, 7])
        >>> ss
        SortedSet([4, 5])
 
        :param iterables: iterable arguments
        :return: itself
 
        )rrÚintersection_updaterJrU)r!rRrrr#r#r$rX1s 
 
zSortedSet.intersection_updatecCs|j |¡}|j||jdS)aóReturn the symmetric difference with `other` as a new sorted set.
 
        The `symmetric_difference` method also corresponds to operator ``^``.
 
        ``ss.__xor__(other)`` <==> ``ss ^ other``
 
        The symmetric difference is all values tha are in exactly one of the
        sets.
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> ss.symmetric_difference([4, 5, 6, 7])
        SortedSet([1, 2, 3, 6, 7])
 
        :param other: `other` iterable
        :return: new sorted set
 
        r)rÚsymmetric_differencer*r)r!r7rSr#r#r$rYMs zSortedSet.symmetric_differencecCs,|j}|j}| |¡| ¡| |¡|S)aUpdate the sorted set with the symmetric difference with `other`.
 
        The `symmetric_difference_update` method also corresponds to operator
        ``^=``.
 
        ``ss.__ixor__(other)`` <==> ``ss ^= other``
 
        Keep only values found in exactly one of itself and `other`.
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> _ = ss.symmetric_difference_update([4, 5, 6, 7])
        >>> ss
        SortedSet([1, 2, 3, 6, 7])
 
        :param other: `other` iterable
        :return: itself
 
        )rrÚsymmetric_difference_updaterJrU)r!r7rrr#r#r$rZfs 
 
z%SortedSet.symmetric_difference_updatecGs|jtt|ƒf|žŽ|jdS)a‹Return new sorted set with values from itself and all `iterables`.
 
        The `union` method also corresponds to operator ``|``.
 
        ``ss.__or__(iterable)`` <==> ``ss | iterable``
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> ss.union([4, 5, 6, 7])
        SortedSet([1, 2, 3, 4, 5, 6, 7])
 
        :param iterables: iterable arguments
        :return: new sorted set
 
        r)Ú    __class__rrDr)r!rRr#r#r$ÚunionƒszSortedSet.unioncGsl|j}|j}tt|Žƒ}dt|ƒt|ƒkrP|j}| |¡| ¡| |¡n|j}|D] }||ƒqZ|S)a’Update the sorted set adding values from all `iterables`.
 
        The `update` method also corresponds to operator ``|=``.
 
        ``ss.__ior__(iterable)`` <==> ``ss |= iterable``
 
        >>> ss = SortedSet([1, 2, 3, 4, 5])
        >>> _ = ss.update([4, 5, 6, 7])
        >>> ss
        SortedSet([1, 2, 3, 4, 5, 6, 7])
 
        :param iterables: iterable arguments
        :return: itself
 
        rT)rrrrrBrUrJÚ_add)r!rRrrr)r]r.r#r#r$rU˜s 
 
zSortedSet.updatecCst|ƒ|j|jffS)zSupport for pickle.
 
        The tricks played with exposing methods in :func:`SortedSet.__init__`
        confuse pickle so customize the reducer.
 
        )Útyperrr+r#r#r$Ú
__reduce__ºszSortedSet.__reduce__cCs8|j}|dkrdnd |¡}t|ƒj}d |t|ƒ|¡S)zŠReturn string representation of sorted set.
 
        ``ss.__repr__()`` <==> ``repr(ss)``
 
        :return: string representation
 
        NÚz , key={0!r}z {0}({1!r}{2}))rr<r^r;Úlist)r!rrZ    type_namer#r#r$Ú__repr__Äs    
zSortedSet.__repr__csF|j‰|j}| ¡tˆƒt|ƒks(t‚t‡fdd„|DƒƒsBt‚dS)zMCheck invariants of sorted set.
 
        Runtime complexity: `O(n)`
 
        c3s|]}|ˆkVqdS)Nr#)Ú.0r.r,r#r$Ú    <genexpr>Ýsz#SortedSet._check.<locals>.<genexpr>N)rrÚ_checkrBÚAssertionErrorÚall)r!rr#r,r$reÓs
zSortedSet._check)NN)N)rO)?r;Ú
__module__Ú __qualname__r=r%Ú classmethodr*Úpropertyrr/r0r5Z_SortedSet__make_cmprÚ__eq__rÚ__ne__rÚ__lt__rÚ__gt__rÚ__le__rÚ__ge__Ú staticmethodrCrErGrHr]rJrKÚ__copy__rLrNrVrPr4rQÚ__sub__r3Ú__isub__rWÚ__and__Ú__rand__rXÚ__iand__rYÚ__xor__Ú__rxor__rZÚ__ixor__r\Ú__or__Ú__ror__rUÚ__ior__r r_r rbrer#r#r#r$r$slG
? 
              
 
 
 
 
rN)r=Ú    itertoolsrÚoperatorrrrrrrÚtextwrapr    Z
sortedlistr r Úcollections.abcr rrÚ ImportErrorÚ collectionsrr#r#r#r$Ú<module>s