-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathB_Siga_ta_Kymata.py
More file actions
312 lines (270 loc) · 10.4 KB
/
B_Siga_ta_Kymata.py
File metadata and controls
312 lines (270 loc) · 10.4 KB
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
#HERE ARE PROGRAMMING TIPS
#0. Solve sample test cases BY HAND first only then you are allowed to write code
# NEVER WRITE CODE UNTIL YOU ARE SATISFIED BY THE ANALYSIS AND HAVE A PSEUDOCODE
#1. Recursion equals tree
#2 Dont Focus on result, focus on problem , dont see standings and dashboard , become zen , FUCK RATING
# its YOU and the PROBLEM no one in between
# 3. Think passively about problems when doing nothing thats the way to grow , anyway YOU dont HAVE ANYTHING BETTER\
# TO THINK ABOUT
#4. Dont force a solution on the problem , ask the problem how it wanna be solved
#FUCK ANIME , cant really FUCK ANIME LOL
# With a little courage there was a future that could have changed -MUshoku Tensei
# If i get a little stronger today then theres a future i can protect -Mushoku Tensei
import sys
import os
import itertools
from math import ceil
import inspect
from types import *
input = sys.stdin.readline
mod = 10**9 + 7
standard_input, packages, output_together = 1, 1, 0
dfs, hashing, read_from_file = 1, 1, 0
if 1:
if standard_input:
import io, os, sys
input = lambda: sys.stdin.readline().strip()
import math
inf = math.inf
if packages:
from io import BytesIO, IOBase
import random
import os
import bisect
import typing
from collections import Counter, defaultdict, deque
from copy import deepcopy
from functools import cmp_to_key, lru_cache, reduce
from heapq import merge, heapify, heappop, heappush, heappushpop, nlargest, nsmallest
from itertools import accumulate, combinations, permutations, count, product
from operator import add, iand, ior, itemgetter, mul, xor
from string import ascii_lowercase, ascii_uppercase, ascii_letters
from typing import *
BUFSIZE = 4096
if output_together:
class FastIO(IOBase):
newlines = 0
def __init__(self, file):
self._fd = file.fileno()
self.buffer = BytesIO()
self.writable = "x" in file.mode or "r" not in file.mode
self.write = self.buffer.write if self.writable else None
def read(self):
while True:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
if not b:
break
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines = 0
return self.buffer.read()
def readline(self):
while self.newlines == 0:
b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
self.newlines = b.count(b"\n") + (not b)
ptr = self.buffer.tell()
self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
self.newlines -= 1
return self.buffer.readline()
def flush(self):
if self.writable:
os.write(self._fd, self.buffer.getvalue())
self.buffer.truncate(0), self.buffer.seek(0)
class IOWrapper(IOBase):
def __init__(self, file):
self.buffer = FastIO(file)
self.flush = self.buffer.flush
self.writable = self.buffer.writable
self.write = lambda s: self.buffer.write(s.encode("ascii"))
self.read = lambda: self.buffer.read().decode("ascii")
self.readline = lambda: self.buffer.readline().decode("ascii")
sys.stdout = IOWrapper(sys.stdout)
if dfs:
from types import GeneratorType
def bootstrap(f, stk=[]):
def wrappedfunc(*args, **kwargs):
if stk:
return f(*args, **kwargs)
else:
to = f(*args, **kwargs)
while True:
if type(to) is GeneratorType:
stk.append(to)
to = next(to)
else:
stk.pop()
if not stk:
break
to = stk[-1].send(to)
return to
return wrappedfunc
if hashing:
RANDOM = random.getrandbits(20)
class Wrapper(int):
def __init__(self, x):
int.__init__(x)
def __hash__(self):
return super(Wrapper, self).__hash__() ^ RANDOM
class MyDict(dict):
def __setitem__(self, key, value):
if isinstance(key, int):
key = Wrapper(key)
super().__setitem__(key, value)
def __getitem__(self, key):
if isinstance(key, int):
key = Wrapper(key)
return super().__getitem__(key)
def __delitem__(self, key):
if isinstance(key, int):
key = Wrapper(key)
super().__delitem__(key)
def __contains__(self, key):
if isinstance(key, int):
key = Wrapper(key)
return super().__contains__(key)
if read_from_file:
file = open("input.txt", "r").readline().strip()[1:-1]
fin = open(file, 'r')
input = lambda: fin.readline().strip()
output_file = open("output.txt", "w")
def fprint(*args, **kwargs):
print(*args, **kwargs, file=output_file)
# Overwrite print function
def print(*args, sep=' ', end='\n', file=sys.stdout):
if file is sys.stdout:
sys.stdout.write(sep.join(map(str, args)) + end)
else:
# Fallback for cases where the file argument is used
builtins.print(*args, sep=sep, end=end, file=file)
def debug(*variable):
if ONLINE_JUDGE:
return
else:
print(*variable)
#If you are submitting on cf then i genuinely recommend , asking gpt to convert py recursion
#to cpp
#This is for python recusino limit workaround, converts recuirsive function to a generator
#stack ,just do @bootstap before writing a function
#replace return with yield in your recursive function
def bootstrap(f, stack=[]):
def wrappedfunc(*args, **kwargs):
if stack:
return f(*args, **kwargs)
else:
to = f(*args, **kwargs)
while True:
if type(to) is GeneratorType:
stack.append(to)
to = next(to)
else:
stack.pop()
if not stack:
break
to = stack[-1].send(to)
return to
return wrappedfunc
# Functions for input handling
def inp():
return int(input())
def st():
return input().rstrip('\n')
def lis():
return list(map(int, input().split()))
def ma():
return map(int, input().split())
def set_online_judge():
global ONLINE_JUDGE
ONLINE_JUDGE=True
'''
**********************************************************************************************
CODE STARTS HERE
***************************************************************************************
'''
ONLINE_JUDGE = True
set_online_judge()
tcs=inp()
for _ in range(tcs):
n=inp()
perm=lis()
xi=st()
prefmin=[float('inf')]*(n+1)
prefmax=[-float('inf')]*(n+1)
suffmin=[float('inf')]*(n+1)
suffmax=[-float('inf')]*(n+1)
for i in range(n):
prefmin[i+1]=min(prefmin[i],perm[i])
prefmax[i+1]=max(prefmax[i],perm[i])
for i in range(n-1,-1,-1):
suffmin[i]=min(suffmin[i+1],perm[i])
suffmax[i]=max(suffmax[i+1],perm[i])
prefmin=prefmin[1:]
prefmax=prefmax[1:]
suffmin=suffmin[:-1]
suffmax=suffmax[:-1]
debug('prefmin',prefmin)
debug('prefmax',prefmax)
debug('suffmin',suffmin)
debug('suffmax',suffmax)
def solve():
si=['0']*n
ops=[]
if xi[0]=='1' or xi[-1]=='1':
print(-1)
return(-1)
while len(ops)<5:
for i in range(1,n-1):
if xi[i]=='1' and si[i]!='1':
#then we need to do an operation at i fro sure
#whats the max range i can make one which includes i two cases
#xl<xi<xr
#so l will be the first index st prefmin[l] <perm[]
#after doing an operation break
l1=-1
l2=-1
for j in range(i):
#j has to be on left of i
if prefmin[j]<perm[i] and l1==-1:
l1=j
if prefmax[j]>perm[i] and l2==-1:
l2=j
r1=-1
r2=-1
for j in range(n-1,i,-1):
if suffmax[j]>perm[i] and r1==-1:
r1=j
if suffmin[j]<perm[i] and r2==-1:
r2=j
#in these two ranges
#hichever has more count of ones in x[i]
c1=0
c2=0
for i in range(l1+1,r1):
if xi[i]=='1':
c1+=1
for i in range(l2+1,r2):
if xi[i]=='1':
c2+=1
debug(f'case 1 : l1={l1} ,r1={r1} c1={c1}')
debug(f'case 2 : l2={l2} ,r2={r2} c2={c2}')
if c1==0 and c2==0 :
print(-1)
return -1
if c1>=c2 and r1!=-1 and l1!=-1:
ops.append((l1+1,r1+1))
for i in range(l1+1,r1):
si[i]='1'
elif c2>c1 and r2!=-1 and l2!=-1:
ops.append((l2+1,r2+1))
for i in range(l2+1,r2):
si[i]='1'
else:
print(-1)
return -1
break
else:
break
print(len(ops))
for x in ops:
print(*x)
return
solve()