結果

問題 No.2182 KODOKU Stone
ユーザー ShirotsumeShirotsume
提出日時 2022-12-30 22:40:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,906 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 124,960 KB
最終ジャッジ日時 2024-05-04 10:48:33
合計ジャッジ時間 8,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,424 KB
testcase_01 AC 42 ms
56,604 KB
testcase_02 AC 43 ms
56,584 KB
testcase_03 RE -
testcase_04 AC 40 ms
55,072 KB
testcase_05 AC 37 ms
55,168 KB
testcase_06 AC 39 ms
56,148 KB
testcase_07 AC 41 ms
61,260 KB
testcase_08 AC 38 ms
56,780 KB
testcase_09 AC 39 ms
56,372 KB
testcase_10 RE -
testcase_11 AC 340 ms
124,216 KB
testcase_12 WA -
testcase_13 AC 90 ms
104,348 KB
testcase_14 AC 114 ms
92,676 KB
testcase_15 WA -
testcase_16 AC 345 ms
124,960 KB
testcase_17 AC 76 ms
91,292 KB
testcase_18 AC 317 ms
116,336 KB
testcase_19 AC 237 ms
97,364 KB
testcase_20 AC 302 ms
106,720 KB
testcase_21 AC 134 ms
94,220 KB
testcase_22 AC 91 ms
92,964 KB
testcase_23 AC 207 ms
96,536 KB
testcase_24 AC 165 ms
94,872 KB
testcase_25 AC 75 ms
82,708 KB
testcase_26 AC 74 ms
83,096 KB
testcase_27 AC 73 ms
83,192 KB
testcase_28 AC 289 ms
101,712 KB
testcase_29 AC 325 ms
112,224 KB
testcase_30 AC 358 ms
117,952 KB
testcase_31 AC 278 ms
102,684 KB
testcase_32 AC 268 ms
100,748 KB
testcase_33 AC 310 ms
105,996 KB
testcase_34 AC 153 ms
98,744 KB
testcase_35 AC 302 ms
105,924 KB
testcase_36 AC 138 ms
82,840 KB
testcase_37 AC 350 ms
118,560 KB
testcase_38 AC 40 ms
55,652 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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(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(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+1])
0