結果

問題 No.2182 KODOKU Stone
ユーザー ShirotsumeShirotsume
提出日時 2022-12-30 22:44:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 1,914 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 125,092 KB
最終ジャッジ日時 2024-05-04 10:51:12
合計ジャッジ時間 8,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,528 KB
testcase_01 AC 37 ms
55,168 KB
testcase_02 AC 36 ms
54,784 KB
testcase_03 AC 39 ms
54,784 KB
testcase_04 AC 38 ms
54,656 KB
testcase_05 AC 37 ms
54,400 KB
testcase_06 AC 38 ms
55,936 KB
testcase_07 AC 40 ms
60,160 KB
testcase_08 AC 39 ms
55,424 KB
testcase_09 AC 44 ms
55,424 KB
testcase_10 AC 37 ms
54,272 KB
testcase_11 AC 320 ms
122,944 KB
testcase_12 AC 302 ms
113,464 KB
testcase_13 AC 91 ms
104,320 KB
testcase_14 AC 112 ms
92,480 KB
testcase_15 AC 325 ms
113,724 KB
testcase_16 AC 354 ms
125,092 KB
testcase_17 AC 83 ms
90,772 KB
testcase_18 AC 319 ms
114,544 KB
testcase_19 AC 237 ms
97,280 KB
testcase_20 AC 294 ms
106,464 KB
testcase_21 AC 131 ms
94,208 KB
testcase_22 AC 94 ms
92,800 KB
testcase_23 AC 207 ms
96,256 KB
testcase_24 AC 158 ms
95,200 KB
testcase_25 AC 77 ms
82,432 KB
testcase_26 AC 74 ms
82,560 KB
testcase_27 AC 72 ms
82,816 KB
testcase_28 AC 278 ms
102,612 KB
testcase_29 AC 322 ms
111,456 KB
testcase_30 AC 335 ms
116,632 KB
testcase_31 AC 274 ms
101,912 KB
testcase_32 AC 265 ms
101,032 KB
testcase_33 AC 304 ms
108,180 KB
testcase_34 AC 153 ms
98,940 KB
testcase_35 AC 298 ms
107,592 KB
testcase_36 AC 132 ms
82,432 KB
testcase_37 AC 450 ms
119,588 KB
testcase_38 AC 43 ms
54,528 KB
testcase_39 AC 43 ms
55,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
from collections import deque
import bisect
import heapq
class Heap():
    def __init__(self, maxi = False):
        self.sum = 0
        self.al = []
        self.maxi = maxi
        self.len = 0

    def __len__(self):
        return len(self.al)

    def add(self, x):
        if self.maxi:
            heapq.heappush(self.al, -x)
        else:
            heapq.heappush(self.al, x)
        self.sum += x
    
    def pop(self):
        if self.maxi:
            now = heapq.heappop(self.al)
            self.sum += now
            return -now
        else:
            now = heapq.heappop(self.al)
            self.sum -= now
            return now

    def top(self):
        now = self.pop()
        self.add(now)
        return now
n = ii()

k = li()
a = []
for _ in range(n):
    _ = ii()
    a.append(list(sorted(li())))

def check(x):
	p = []
	q_max = 0
	for v in a:
		gt = len(v) - bisect.bisect_left(v, x)
		if gt < len(v):
			p.append(gt)
		elif q_max < gt:
			q_max = gt
	if not p:
		return True
	p.sort()
	que = Heap()
	for v in k[len(p):]:
		que.add(v)
	if(len(que) and q_max >= que.top()):
		return True

	for i in range(len(p) - 1, -1, -1):
		u = k[i] if len(que) == 0 else min(que.top(), k[i])
		if(p[i] >= u):
			return True
		elif(p[i] < u - 1):
			return False
		elif(len(que) and p[i] == que.top() - 1 and q_max >= k[i]):
			return True
		elif(i == 0):
			return False
		elif(len(que) == 0 or p[i] < que.top() - 1):
			continue
		que.pop()
		que.add(k[i])
	return True


A = []
for i in range(n):
    for v in a[i]:
        A.append(v)


A = list(set(A))
A.sort()
ok = 0
ng = len(A)
while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if check(A[mid]):
        ok = mid
    else:
        ng = mid
print(A[ok])
0