結果

問題 No.2680 研究室配属
ユーザー mymelochanmymelochan
提出日時 2024-03-20 21:08:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-09-30 06:54:19
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 41 ms
54,144 KB
testcase_02 AC 45 ms
54,272 KB
testcase_03 AC 43 ms
59,776 KB
testcase_04 AC 41 ms
60,416 KB
testcase_05 AC 44 ms
63,232 KB
testcase_06 AC 46 ms
64,256 KB
testcase_07 AC 46 ms
64,640 KB
testcase_08 AC 44 ms
63,744 KB
testcase_09 AC 47 ms
62,080 KB
testcase_10 AC 60 ms
76,416 KB
testcase_11 AC 65 ms
76,416 KB
testcase_12 AC 69 ms
76,160 KB
testcase_13 AC 62 ms
76,928 KB
testcase_14 AC 67 ms
76,288 KB
testcase_15 AC 50 ms
65,408 KB
testcase_16 AC 83 ms
80,092 KB
testcase_17 AC 61 ms
76,288 KB
testcase_18 AC 74 ms
77,440 KB
testcase_19 AC 95 ms
81,152 KB
testcase_20 AC 85 ms
79,744 KB
testcase_21 AC 54 ms
70,144 KB
testcase_22 AC 79 ms
78,720 KB
testcase_23 AC 117 ms
84,736 KB
testcase_24 AC 120 ms
84,480 KB
testcase_25 AC 131 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,M = lmin()
A = lmin()
T = [lmin() for _ in range(N)]

ans = [-1]*N
R = list(range(N))
TT = [[] for _ in range(N)]
for i in range(2*N):
    if not R:
        break
    NR = []
    
    for r in R:
        tar = T[r][i]
        if len(TT[tar]) == A[tar]:
            NR.append(r)
        else:
            TT[tar].append(r)
            ans[r] = tar
    R = NR

print(*ans)
0