結果

問題 No.679 不思議マーケット
ユーザー H3PO4H3PO4
提出日時 2020-11-22 08:41:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-07-23 16:18:16
合計ジャッジ時間 1,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 54 ms
11,904 KB
testcase_04 AC 36 ms
11,136 KB
testcase_05 AC 37 ms
11,264 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 34 ms
11,136 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 34 ms
10,752 KB
testcase_12 AC 34 ms
10,752 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int1 = lambda x: int(x) - 1

N, M = map(int, input().split())
table = [None] * N
for _ in range(M):
    g, r = map(int, input().split())
    h = set(map(int1, input().split()))
    g -= 1
    table[g] = h

basket = set(i for i, t in enumerate(table) if t is None)
ans = len(basket)
while True:
    for i in range(N):
        if i not in basket:
            if table[i] <= basket:
                basket.add(i)
    if ans == len(basket):
        print(ans)
        break
    else:
        ans = len(basket)
0