結果

問題 No.2680 研究室配属
ユーザー nikoro256nikoro256
提出日時 2024-03-20 22:22:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,462 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 245,568 KB
最終ジャッジ日時 2024-09-30 08:19:11
合計ジャッジ時間 11,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 54 ms
61,312 KB
testcase_04 AC 58 ms
61,952 KB
testcase_05 AC 73 ms
69,120 KB
testcase_06 AC 82 ms
71,936 KB
testcase_07 AC 84 ms
72,448 KB
testcase_08 AC 84 ms
71,808 KB
testcase_09 AC 72 ms
66,816 KB
testcase_10 AC 228 ms
100,352 KB
testcase_11 AC 220 ms
101,888 KB
testcase_12 AC 246 ms
94,976 KB
testcase_13 AC 224 ms
100,864 KB
testcase_14 AC 302 ms
109,568 KB
testcase_15 AC 92 ms
73,216 KB
testcase_16 AC 651 ms
145,844 KB
testcase_17 AC 150 ms
83,712 KB
testcase_18 AC 405 ms
115,992 KB
testcase_19 AC 835 ms
164,936 KB
testcase_20 AC 651 ms
143,576 KB
testcase_21 AC 128 ms
84,608 KB
testcase_22 AC 551 ms
136,240 KB
testcase_23 AC 1,455 ms
242,880 KB
testcase_24 AC 1,462 ms
245,568 KB
testcase_25 AC 953 ms
242,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input=sys.stdin.readline
N,M=map(int,input().split())
A=list(map(int,input().split()))
T=[]
for _ in range(N):
    T.append(list(map(int,input().split())))
hq=[]
for i in range(N):
    for j in range(M):
        hq.append([j,-T[i][j],i])
hq.sort(key=lambda a:a[0]*10000+a[1])
use=[False for _ in range(N)]
ans=[[] for _ in range(M)]
for k in range(len(hq)):
    j,t,i=hq[k]
    t=-t
    if not use[i] and len(ans[t])<A[t]:
        ans[t].append(i)
        use[i]=True
fa=[-1]*N
for i in range(M):
    for a in ans[i]:
        fa[a]=i
print(*fa)
0