結果

問題 No.2680 研究室配属
ユーザー ThetaTheta
提出日時 2024-04-18 17:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 102,108 KB
最終ジャッジ日時 2024-10-10 10:28:17
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,064 KB
testcase_01 AC 40 ms
53,628 KB
testcase_02 AC 40 ms
55,040 KB
testcase_03 AC 47 ms
61,732 KB
testcase_04 AC 44 ms
61,344 KB
testcase_05 AC 48 ms
63,656 KB
testcase_06 AC 50 ms
66,400 KB
testcase_07 AC 51 ms
65,612 KB
testcase_08 AC 52 ms
65,456 KB
testcase_09 AC 57 ms
63,984 KB
testcase_10 AC 73 ms
78,316 KB
testcase_11 AC 73 ms
78,536 KB
testcase_12 AC 77 ms
78,584 KB
testcase_13 AC 75 ms
78,980 KB
testcase_14 AC 80 ms
78,480 KB
testcase_15 AC 58 ms
68,480 KB
testcase_16 AC 106 ms
86,900 KB
testcase_17 AC 72 ms
78,636 KB
testcase_18 AC 92 ms
82,988 KB
testcase_19 AC 126 ms
90,332 KB
testcase_20 AC 112 ms
86,788 KB
testcase_21 AC 65 ms
73,672 KB
testcase_22 AC 97 ms
82,900 KB
testcase_23 AC 161 ms
101,288 KB
testcase_24 AC 160 ms
101,356 KB
testcase_25 AC 191 ms
102,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def main():
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    hope = [deque(map(int, input().split())) for _ in range(N)]

    rest = list(range(N))
    lab_assigned = [set() for _ in range(M)]
    while rest:
        not_assigned = []
        for idx in rest:
            hope_lab = hope[idx].popleft()
            if len(lab_assigned[hope_lab]) < A[hope_lab]:
                lab_assigned[hope_lab].add(idx)
            else:
                not_assigned.append(idx)
        rest = not_assigned
    assigned_lab = {}
    for lab_idx, lab_member in enumerate(lab_assigned):
        for member in lab_member:
            assigned_lab[member] = lab_idx
    ans = []
    for idx in range(N):
        ans.append(assigned_lab[idx])
    print(*ans)


if __name__ == "__main__":
    main()
0