結果

問題 No.2182 KODOKU Stone
ユーザー MasKoaTSMasKoaTS
提出日時 2022-11-29 11:57:01
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 872 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 181,444 KB
最終ジャッジ日時 2024-11-14 12:07:12
合計ジャッジ時間 13,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,784 KB
testcase_01 AC 43 ms
54,228 KB
testcase_02 AC 43 ms
54,132 KB
testcase_03 AC 42 ms
54,128 KB
testcase_04 AC 42 ms
53,976 KB
testcase_05 AC 44 ms
54,296 KB
testcase_06 AC 55 ms
63,932 KB
testcase_07 AC 59 ms
65,732 KB
testcase_08 AC 57 ms
65,128 KB
testcase_09 AC 57 ms
65,384 KB
testcase_10 AC 42 ms
55,032 KB
testcase_11 AC 626 ms
177,708 KB
testcase_12 AC 617 ms
149,240 KB
testcase_13 AC 142 ms
101,400 KB
testcase_14 AC 153 ms
82,968 KB
testcase_15 AC 651 ms
150,228 KB
testcase_16 AC 672 ms
181,444 KB
testcase_17 AC 125 ms
97,216 KB
testcase_18 AC 620 ms
156,944 KB
testcase_19 AC 372 ms
110,732 KB
testcase_20 AC 533 ms
138,552 KB
testcase_21 AC 193 ms
85,328 KB
testcase_22 AC 155 ms
84,860 KB
testcase_23 WA -
testcase_24 AC 241 ms
87,944 KB
testcase_25 AC 109 ms
77,220 KB
testcase_26 AC 92 ms
77,456 KB
testcase_27 AC 92 ms
77,008 KB
testcase_28 AC 496 ms
132,060 KB
testcase_29 AC 610 ms
153,724 KB
testcase_30 AC 662 ms
165,732 KB
testcase_31 AC 490 ms
132,656 KB
testcase_32 AC 500 ms
127,636 KB
testcase_33 AC 567 ms
146,504 KB
testcase_34 AC 232 ms
90,680 KB
testcase_35 AC 575 ms
147,520 KB
testcase_36 AC 188 ms
82,088 KB
testcase_37 AC 665 ms
164,312 KB
testcase_38 WA -
testcase_39 AC 41 ms
55,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
input = sys.stdin.readline

N = int(input())
K_rev = list(map(int, input().split()))[::-1]
T = [0] * N
A = [[] for _ in [0] * N]
st = set([])
for i in range(N):
	T[i] = int(input())
	A[i] = list(map(int, input().split()))
	st |= set(A[i])
Alis = sorted(st)

def check():
	P_tmp = [];	Q_tmp = []
	for lis in A:
		s = sum((k >= m) for k in lis)
		if(s < len(lis)):
			P_tmp.append(s)
		else:
			Q_tmp.append(s)
	P = deque(sorted(P_tmp))
	Q = deque(sorted(Q_tmp))
	for i, k in enumerate(K_rev):
		p = P[-1] if(P) else -1
		q = Q[-1] if(Q) else -1
		if(max(p, q) >= k):
			break
		elif(p == k - 1 and i < N - 1):
			P.pop()
		elif(q != -1):
			Q.popleft()
		else:
			return False
	return True

ok = 0
ng = len(Alis)
while(ng - ok > 1):
	t = (ok + ng) >> 1
	m = Alis[t]
	if check():
		ok = t
	else:
		ng = t

ans = Alis[ok]
print(ans)	
0