結果

問題 No.2182 KODOKU Stone
ユーザー ShirotsumeShirotsume
提出日時 2022-09-21 01:24:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,503 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 337,096 KB
最終ジャッジ日時 2024-11-14 12:04:44
合計ジャッジ時間 37,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,508 KB
testcase_01 AC 39 ms
161,632 KB
testcase_02 AC 38 ms
60,308 KB
testcase_03 AC 38 ms
168,680 KB
testcase_04 AC 38 ms
59,872 KB
testcase_05 AC 39 ms
146,200 KB
testcase_06 AC 40 ms
60,916 KB
testcase_07 AC 40 ms
296,664 KB
testcase_08 AC 40 ms
61,324 KB
testcase_09 AC 40 ms
250,700 KB
testcase_10 WA -
testcase_11 AC 551 ms
337,096 KB
testcase_12 TLE -
testcase_13 AC 78 ms
259,784 KB
testcase_14 AC 88 ms
83,236 KB
testcase_15 TLE -
testcase_16 AC 560 ms
265,992 KB
testcase_17 WA -
testcase_18 AC 584 ms
259,012 KB
testcase_19 AC 269 ms
146,360 KB
testcase_20 AC 648 ms
229,540 KB
testcase_21 AC 124 ms
77,632 KB
testcase_22 AC 79 ms
76,240 KB
testcase_23 TLE -
testcase_24 AC 173 ms
93,844 KB
testcase_25 AC 72 ms
76,112 KB
testcase_26 AC 73 ms
76,092 KB
testcase_27 AC 73 ms
75,928 KB
testcase_28 AC 552 ms
202,780 KB
testcase_29 AC 671 ms
250,644 KB
testcase_30 TLE -
testcase_31 AC 342 ms
237,996 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 41 ms
52,940 KB
testcase_39 AC 39 ms
247,360 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
rec = True
if rec:
    sys.setrecursionlimit(5 * 10 ** 5)
    from pypyjit import set_param
    set_param('max_unroll_recursion=-1')
 
n = ii()

k = [i - 1 for i in li()][::-1]
a = []
for _ in range(n):
    _ = ii()
    a.append(list(sorted(li(), reverse=True)))

def check(x, s, ix):
    for i in s:
        if len(a[i]) > k[ix] and a[i][k[ix]] >= x:
            return True
        if len(a[i]) - 1 > k[ix] and k[ix] - 1 >= 0 and a[i][k[ix] - 1] >= x and ix + 1 < len(k):
            s.discard(i)
            ix += 1
            p = check(x, s, ix)
            ix -= 1
            s.add(i)
            if p:
                return True 
        if len(a[i]) == k[ix] and a[i][min(len(a[i]) - 1, k[ix])] >= x:
            s.discard(i)
            ix += 1
            p = check(a[i][min(len(a[i]) - 1, k[ix])], s, ix)
            s.add(i)
            ix -= 1
            if p:
                return True
        if len(a[i]) < k[ix] and a[i][min(len(a[i]) - 1, k[ix])] >= x:
            s.discard(i)
            ix += 1
            p = check(x, s, ix)
            s.add(i)
            ix -= 1
            if p:
                return True
    return False


ok = 0
ng = 10 ** 9 + 1

while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if check(mid, set(range(n)), 0):
        ok = mid
    else:
        ng = mid
print(ok)
0