結果

問題 No.2182 KODOKU Stone
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-24 22:15:02
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 960 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 104,780 KB
最終ジャッジ日時 2024-11-14 11:58:57
合計ジャッジ時間 12,527 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,500 KB
testcase_01 AC 44 ms
54,464 KB
testcase_02 AC 42 ms
54,916 KB
testcase_03 AC 41 ms
54,628 KB
testcase_04 WA -
testcase_05 AC 41 ms
54,204 KB
testcase_06 AC 53 ms
64,900 KB
testcase_07 WA -
testcase_08 AC 55 ms
64,808 KB
testcase_09 AC 56 ms
64,980 KB
testcase_10 AC 40 ms
54,584 KB
testcase_11 AC 483 ms
99,828 KB
testcase_12 AC 546 ms
102,224 KB
testcase_13 AC 143 ms
101,416 KB
testcase_14 AC 148 ms
83,212 KB
testcase_15 AC 567 ms
104,780 KB
testcase_16 AC 528 ms
103,528 KB
testcase_17 AC 121 ms
97,464 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 150 ms
84,736 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 105 ms
77,280 KB
testcase_26 AC 90 ms
77,328 KB
testcase_27 AC 91 ms
77,072 KB
testcase_28 WA -
testcase_29 AC 482 ms
95,984 KB
testcase_30 AC 520 ms
100,072 KB
testcase_31 AC 392 ms
92,980 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 460 ms
96,200 KB
testcase_36 WA -
testcase_37 AC 525 ms
99,900 KB
testcase_38 WA -
testcase_39 AC 42 ms
54,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict as dfdict
input = sys.stdin.readline

N = int(input())
K = list(map(int, input().split()))
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)

ok = 0
ng = len(Alis)

def check():
	st = set([])
	dic = dfdict(int)
	for lis in A:
		s = sum((k >= md) for k in lis)
		st.add(s)
		dic[(s << 1) | (s == len(lis))] += 1
	slis = sorted(st)
	for i, k in enumerate(K[::-1]):
		id0 = (slis[-1] << 1)
		id1 = (id0 | 1)
		if(slis[-1] >= k):
			return True
		elif(i == N - 1):
			return (dic[id1] > 0)
		elif(slis[-1] < k-1 or dic[id0] == 0):
			if(dic[id1] == 0):
				break
			dic[id1] -= 1
		else:
			dic[id0] -= 1
		if(dic[id0] == 0 and dic[id1] == 0):
			slis.pop()
	return False

while(ng - ok > 1):
	mid = (ok + ng) >> 1
	md = Alis[mid]
	if check():
		ok = mid
	else:
		ng = mid

ans = Alis[ok]
print(ans)	
0