-
Notifications
You must be signed in to change notification settings - Fork 9
/
perimetric_ch3.py
152 lines (134 loc) Β· 5.36 KB
/
perimetric_ch3.py
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
# Copyright (c) 2020 kamyu. All rights reserved.
#
# Facebook Hacker Cup 2020 Round 1 - Problem A. Perimetric - Chapter 3
# https://www.facebook.com/codingcompetitions/hacker-cup/2020/round-1/problems/A3
#
# Time: O(NlogN), pass in PyPy2 but Python2
# Space: O(N)
#
from random import randint, seed
# Template:
# https://github.com/kamyu104/LeetCode-Solutions/blob/master/Python/design-skiplist.py
class SkipNode(object):
def __init__(self, level=0, val=None):
self.val = val
self.nexts = [None]*level
self.prevs = [None]*level
class SkipList(object):
P_NUMERATOR, P_DENOMINATOR = 1, 2 # P = 1/4 in redis implementation
MAX_LEVEL = 32 # enough for 2^32 elements
def __init__(self, end=float("inf"), can_duplicated=False):
seed(0)
self.__head = SkipNode()
self.__len = 0
self.__can_duplicated = can_duplicated
self.add(end)
def lower_bound(self, target):
return self.__lower_bound(target, self.__find_prev_nodes(target))
def find(self, target):
return self.__find(target, self.__find_prev_nodes(target))
def add(self, val):
if not self.__can_duplicated and self.find(val):
return False
node = SkipNode(self.__random_level(), val)
if len(self.__head.nexts) < len(node.nexts):
self.__head.nexts.extend([None]*(len(node.nexts)-len(self.__head.nexts)))
prevs = self.__find_prev_nodes(val)
for i in xrange(len(node.nexts)):
node.nexts[i] = prevs[i].nexts[i]
if prevs[i].nexts[i]:
prevs[i].nexts[i].prevs[i] = node
prevs[i].nexts[i] = node
node.prevs[i] = prevs[i]
self.__len += 1
return True
def remove(self, val):
prevs = self.__find_prev_nodes(val)
curr = self.__find(val, prevs)
if not curr:
return False
self.__len -= 1
for i in reversed(xrange(len(curr.nexts))):
prevs[i].nexts[i] = curr.nexts[i]
if curr.nexts[i]:
curr.nexts[i].prevs[i] = prevs[i]
if not self.__head.nexts[i]:
self.__head.nexts.pop()
return True
def __lower_bound(self, val, prevs):
if prevs:
candidate = prevs[0].nexts[0]
if candidate:
return candidate
return None
def __find(self, val, prevs):
candidate = self.__lower_bound(val, prevs)
if candidate and candidate.val == val:
return candidate
return None
def __find_prev_nodes(self, val):
prevs = [None]*len(self.__head.nexts)
curr = self.__head
for i in reversed(xrange(len(self.__head.nexts))):
while curr.nexts[i] and curr.nexts[i].val < val:
curr = curr.nexts[i]
prevs[i] = curr
return prevs
def __random_level(self):
level = 1
while randint(1, SkipList.P_DENOMINATOR) <= SkipList.P_NUMERATOR and \
level < SkipList.MAX_LEVEL:
level += 1
return level
def __len__(self):
return self.__len-1 # excluding end node
def __str__(self):
result = []
for i in reversed(xrange(len(self.__head.nexts))):
result.append([])
curr = self.__head.nexts[i]
while curr:
result[-1].append(str(curr.val))
curr = curr.nexts[i]
return "\n".join(map(lambda x: "->".join(x), result))
def process_rect(left, right, h, P, intervals, accu):
left_it = intervals.lower_bound((left, float("-inf"), float("-inf"))).prevs[0]
right_it = intervals.lower_bound((right+1, float("-inf"), float("-inf")))
it = left_it
while it.val[0] < right_it.val[0]:
jt, it = it, it.nexts[0]
if jt.val[2]:
accu -= 2*(min(right, it.val[0])-max(left, jt.val[0])) # exclude counted width perimieter
if jt.val[0] >= left:
accu -= abs(jt.val[1]-jt.val[2]) # exclude counted height up or down perimieter
intervals.remove(jt.val)
accu -= left_it.val[2]+right_it.val[1] # exclude counted first height up and last height down perimieter
accu += 2*(right-left+h) # add full perimeter
P.append(accu)
if left_it.val[2] != h:
intervals.add((left, left_it.val[2], h))
if right_it.val[1] != h:
intervals.add((right, h, right_it.val[1]))
return accu
def perimetric_ch1():
N, K = map(int, raw_input().strip().split())
L = map(int, raw_input().strip().split())
A_L, B_L, C_L, D_L = map(int, raw_input().strip().split())
for _ in xrange(K, N):
L.append((A_L*L[-2] + B_L*L[-1] + C_L) % D_L + 1)
W = map(int, raw_input().strip().split())
A_W, B_W, C_W, D_W = map(int, raw_input().strip().split())
for _ in xrange(K, N):
W.append((A_W*W[-2] + B_W*W[-1] + C_W) % D_W + 1)
H = map(int, raw_input().strip().split())
A_H, B_H, C_H, D_H = map(int, raw_input().strip().split())
for _ in xrange(K, N):
H.append((A_H*H[-2] + B_H*H[-1] + C_H) % D_H + 1)
P, intervals, accu = [], SkipList(end=(float("inf"), 0, 0)), 0
intervals.add((float("-inf"), 0, 0))
for i in xrange(N):
accu = process_rect(L[i], L[i]+W[i], H[i], P, intervals, accu)
return reduce(lambda x, y: (x*y)%MOD, P)
MOD = 10**9+7
for case in xrange(input()):
print 'Case #%d: %s' % (case+1, perimetric_ch1())