백준 문제풀이

백준 13159 - 배열 [Python]

Vermeil 2022. 5. 2. 19:48

https://www.acmicpc.net/problem/13159

 

13159번: 배열

[1, 2, 3, 4, 5]→[1, 4, 3, 2, 5]→[1, 4, 5, 3, 2]→[5, 1, 4, 3, 2]

www.acmicpc.net

[알고리즘 분류]

스플레이 트리

 

 

2번정도 구현해보기만 했던 스플레이 트리.. 막상 해보니 그렇게까지 어렵지는 않았다. 아마도..?

 

https://cubelover.tistory.com/10

위 글을 참고하였다. 감사합니다..

 

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
import sys
 
input = sys.stdin.readline
 
 
# input
def ip(): return int(input())
def sp(): return str(input().rstrip())
 
 
def mip(): return map(int, input().split())
def msp(): return map(str, input().split().rstrip())
 
 
def lmip(): return list(map(int, input().split()))
def lmsp(): return list(map(str, input().split()))
 
 
############ Main! #############
 
INF = 10 ** 9 + 7
 
class Node:
    def __init__(self, l=None, r=None, p=None, v=0, sz=1):
        self.l = l
        self.r = r
        self.p = p
        self.sz = sz
        self.sum = self.mn = self.mx = self.v = v
        self.dummy = False
        self.flip = False
 
class SplayTree:
    def __init__(self, n):
        self.ptr = [Node() for _ in range(n + 2)]
        self.ptr[0= x = self.root = Node(v=-INF)
        for i in range(1, n + 1):
            self.ptr[i] = x.r = Node(v=i, p=x)
            x = x.r
        self.ptr[n + 1= x.r = Node(v=INF, p=x)
        self.root.dummy = x.r.dummy = True
        for i in range(n, 0-1):
            self.update(self.ptr[i])
        self.splay(self.ptr[n // 2])
 
    def update(self, x):
        x.sz = 1
        x.sum = x.mn = x.mx = x.v
        if x.l is not None:
            x.sz += x.l.sz
            x.sum += x.l.sum
            x.mn = min(x.mn, x.l.mn)
            x.mx = max(x.mx, x.l.mx)
        if x.r is not None:
            x.sz += x.r.sz
            x.sum += x.r.sum
            x.mn = min(x.mn, x.r.mn)
            x.mx = max(x.mx, x.r.mx)
 
    def push(self, x):
        if not x.flip:
            return
        x.l, x.r = x.r, x.l
        if x.l is not None:
            x.l.flip ^= 1
        if x.r is not None:
            x.r.flip ^= 1
        x.flip = 0
 
    def gather(self, s, e):
        self.kth(s - 1)
        x = self.root
        self.root = x.r
        self.root.p = None
        self.kth(e - s + 1)
        x.r = self.root
        self.root.p = x
        self.root = x
        return self.root.r.l
 
    def rotate(self, x):
        p = x.p
        y: Node
        self.push(p)
        self.push(x)
        if x == p.l:
            p.l = y = x.r
            x.r = p
        else:
            p.r = y = x.l
            x.l = p
        x.p = p.p
        p.p = x
        if y is not None:
            y.p = p
        if x.p is not None:
            if x.p.l == p:
                x.p.l = x
            else:
                x.p.r = x
        else:
            self.root = x
        self.update(p)
        self.update(x)
 
    def splay(self, x, g=None):
        while x.p != g:
            p = x.p
            if p.p == g:
                self.rotate(x)
                break
            pp = p.p
            if (p.l == x) == (pp.l == p):
                self.rotate(p)
                self.rotate(x)
            else:
                self.rotate(x)
                self.rotate(x)
        if g is not None:
            self.root = x
 
    def flip(self, s, e):
        x = self.gather(s, e)
        x.flip ^= 1
 
    def shift(self, s, e, k):
        x = self.gather(s, e)
        print(x.mn, x.mx, x.sum)
        if k >= 0:
            k %= e - s + 1
            if k == 0:
                return
            self.flip(s, e)
            self.flip(s, s + k - 1)
            self.flip(s + k, e)
        else:
            k = -k
            k %= e - s + 1
            if k == 0:
                return
            self.flip(s, e)
            self.flip(s, e - k)
            self.flip(e - k + 1, e)
 
    def getidx(self, k):
        self.splay(self.ptr[k])
        print(self.root.l.sz)
 
    def kth(self, k):
        x = self.root
        self.push(x)
        while True:
            while x.l is not None and x.l.sz > k:
                x = x.l
                self.push(x)
            if x.l:
                k -= x.l.sz
            if k == 0:
                break
            k -= 1
            x = x.r
            self.push(x)
        self.splay(x)
 
    def prt(self, x):
        s = []
        ret = []
        while True:
            if x is not None:
                self.push(x)
                s.append(x)
                x = x.l
            elif s:
                x = s.pop()
                if not x.dummy:
                    print(x.v, end=" ")
                x = x.r
            else:
                break
        return ret
 
N, q = mip()
tree = SplayTree(N)
 
for i in range(q):
    Q = lmip()
    if Q[0== 1:
        tree.flip(Q[1], Q[2])
        x = tree.gather(Q[1], Q[2])
        print(x.mn, x.mx, x.sum)
    elif Q[0== 2:
        tree.shift(Q[1], Q[2], Q[3])
    elif Q[0== 3:
        tree.kth(Q[1])
        print(tree.root.v)
    else:
        tree.getidx(Q[1])
tree.prt(tree.root)
 
######## Praise greedev ########
cs

솔브닥 티어만 잘 오르는 자료구조...

'백준 문제풀이' 카테고리의 다른 글

5/23 PS  (2) 2022.05.23
5/16~5/22 PS  (0) 2022.05.22
백준 10227 - 삶의 질 [Python]  (0) 2022.04.29
백준 20669 - Close to You [Python]  (0) 2022.04.24
백준 17634 - 이상한 기계 [Python]  (0) 2022.04.19