結果

問題 No.2680 研究室配属
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2024-02-29 17:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,632 KB
最終ジャッジ日時 2024-09-30 05:03:01
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 45 ms
59,136 KB
testcase_04 AC 46 ms
59,776 KB
testcase_05 AC 48 ms
64,768 KB
testcase_06 AC 52 ms
67,200 KB
testcase_07 AC 52 ms
67,456 KB
testcase_08 AC 53 ms
67,200 KB
testcase_09 AC 53 ms
64,256 KB
testcase_10 AC 77 ms
76,800 KB
testcase_11 AC 79 ms
77,056 KB
testcase_12 AC 81 ms
77,312 KB
testcase_13 AC 76 ms
77,056 KB
testcase_14 AC 85 ms
77,696 KB
testcase_15 AC 61 ms
70,272 KB
testcase_16 AC 116 ms
79,744 KB
testcase_17 AC 75 ms
76,672 KB
testcase_18 AC 101 ms
78,208 KB
testcase_19 AC 140 ms
81,408 KB
testcase_20 AC 121 ms
80,128 KB
testcase_21 AC 74 ms
76,160 KB
testcase_22 AC 112 ms
78,976 KB
testcase_23 AC 191 ms
85,248 KB
testcase_24 AC 188 ms
85,632 KB
testcase_25 AC 199 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

想定解

"""

N,M = map(int,input().split())

A = list(map(int,input().split()))

T = [ list(map(int,input().split())) for i in range(N) ]

assert 1 <= M <= N <= 1000
assert sum(A) == N

for i in range(N):
    assert min(T[i]) == 0
    assert max(T[i]) == M-1
    assert len(set(T[i])) == M

    
nok = [i for i in range(N)]
ans = [None] * N

for k in range(M):

    new_nok = []

    for j in nok:
        
        nt = T[j][k]
        if A[nt] > 0:
            A[nt] -= 1
            ans[j] = nt

        else:
            new_nok.append(j)

    nok = new_nok

assert None not in ans

print (*ans)
0