結果

問題 No.2680 研究室配属
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-03-21 00:11:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-09-30 09:45:39
合計ジャッジ時間 3,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 34 ms
10,624 KB
testcase_05 AC 38 ms
10,752 KB
testcase_06 AC 40 ms
10,752 KB
testcase_07 AC 37 ms
10,880 KB
testcase_08 AC 38 ms
11,008 KB
testcase_09 AC 34 ms
10,752 KB
testcase_10 AC 70 ms
13,056 KB
testcase_11 AC 67 ms
12,160 KB
testcase_12 AC 83 ms
13,952 KB
testcase_13 AC 66 ms
11,904 KB
testcase_14 AC 87 ms
14,080 KB
testcase_15 AC 38 ms
10,880 KB
testcase_16 AC 163 ms
23,680 KB
testcase_17 AC 54 ms
11,520 KB
testcase_18 AC 111 ms
15,744 KB
testcase_19 AC 201 ms
28,032 KB
testcase_20 AC 170 ms
23,424 KB
testcase_21 AC 45 ms
11,136 KB
testcase_22 AC 135 ms
17,280 KB
testcase_23 AC 310 ms
42,752 KB
testcase_24 AC 309 ms
42,880 KB
testcase_25 AC 499 ms
42,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
Created on Thu Mar 21 00:02:29 2024

@author: Tekyla
"""

#from sys import stdin
#input = lambda :stdin.readline()[:-1]

from collections import deque

N,M = map(int, input().split())
A = list(map(int, input().split()))
ans = [-1 for _ in range(N)]

T = [list(map(int, input().split())) for _ in range(N)]
i = 0
d1 = deque(list(range(N)))
d2 = deque()
while d1:
    while d1:
        student = d1.popleft()
        t = T[student][i]
        if A[t] > 0:
            ans[student] = t
            A[t] -= 1
        else:
            d2.append(student)
    d1 = d2
    d2 = deque()
    i += 1

print(*ans)
0