結果

問題 No.2182 KODOKU Stone
ユーザー 👑 rin204rin204
提出日時 2023-12-29 15:43:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 161,596 KB
最終ジャッジ日時 2024-09-27 16:13:31
合計ジャッジ時間 12,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,824 KB
testcase_01 AC 37 ms
53,512 KB
testcase_02 AC 48 ms
59,784 KB
testcase_03 AC 36 ms
53,512 KB
testcase_04 AC 34 ms
53,556 KB
testcase_05 AC 34 ms
52,524 KB
testcase_06 AC 43 ms
62,484 KB
testcase_07 AC 45 ms
62,660 KB
testcase_08 AC 44 ms
62,892 KB
testcase_09 AC 44 ms
62,928 KB
testcase_10 AC 35 ms
53,412 KB
testcase_11 AC 679 ms
161,368 KB
testcase_12 AC 660 ms
153,428 KB
testcase_13 AC 113 ms
89,120 KB
testcase_14 AC 118 ms
77,956 KB
testcase_15 AC 692 ms
146,960 KB
testcase_16 AC 671 ms
161,596 KB
testcase_17 AC 111 ms
87,692 KB
testcase_18 AC 633 ms
146,876 KB
testcase_19 AC 353 ms
100,492 KB
testcase_20 AC 512 ms
127,968 KB
testcase_21 AC 154 ms
78,816 KB
testcase_22 AC 126 ms
77,228 KB
testcase_23 AC 296 ms
92,392 KB
testcase_24 AC 210 ms
82,712 KB
testcase_25 AC 90 ms
77,360 KB
testcase_26 AC 86 ms
76,984 KB
testcase_27 AC 82 ms
76,948 KB
testcase_28 AC 497 ms
120,368 KB
testcase_29 AC 583 ms
137,064 KB
testcase_30 AC 617 ms
148,204 KB
testcase_31 AC 492 ms
119,112 KB
testcase_32 AC 484 ms
115,588 KB
testcase_33 AC 555 ms
130,348 KB
testcase_34 AC 196 ms
80,332 KB
testcase_35 AC 547 ms
130,272 KB
testcase_36 AC 189 ms
80,104 KB
testcase_37 AC 617 ms
146,352 KB
testcase_38 AC 35 ms
54,136 KB
testcase_39 AC 34 ms
52,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
K = list(map(int, input().split()))
A = [[] for _ in range(n)]
for i in range(n):
    input()
    A[i] = list(map(int, input().split()))


def ok(x):
    C = []
    all_ = []
    for row in A:
        c = sum(a >= x for a in row)
        if c == len(row):
            all_.append(c)
        else:
            C.append(c)

    if not C:
        return True
    C.sort()
    all_.sort(reverse=True)
    cp = len(C) - 1
    cc = 0
    for k in K[::-1]:
        if C and C[cp + min(cc, len(all_))] >= k:
            return True
        elif all_ and all_[0] >= k:
            return True

        if C[cp] == k - 1:
            cp -= 1
            cc += 1
        elif all_:
            all_.pop()
        else:
            return False

        if cp < 0 and all_:
            return True

    return False


l = 1
r = 1 << 30
while r - l > 1:
    mid = (l + r) // 2
    if ok(mid):
        l = mid
    else:
        r = mid

print(l)
0