結果

問題 No.2680 研究室配属
ユーザー shobonvipshobonvip
提出日時 2024-03-20 21:32:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 86,084 KB
最終ジャッジ日時 2024-09-30 07:21:41
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,328 KB
testcase_01 AC 38 ms
53,140 KB
testcase_02 AC 42 ms
53,012 KB
testcase_03 AC 45 ms
62,056 KB
testcase_04 AC 46 ms
60,768 KB
testcase_05 AC 54 ms
66,124 KB
testcase_06 AC 56 ms
69,220 KB
testcase_07 AC 56 ms
69,212 KB
testcase_08 AC 53 ms
67,728 KB
testcase_09 AC 50 ms
64,556 KB
testcase_10 AC 75 ms
77,508 KB
testcase_11 AC 79 ms
77,308 KB
testcase_12 AC 82 ms
77,824 KB
testcase_13 AC 76 ms
77,080 KB
testcase_14 AC 85 ms
77,972 KB
testcase_15 AC 60 ms
69,100 KB
testcase_16 AC 106 ms
80,216 KB
testcase_17 AC 69 ms
76,812 KB
testcase_18 AC 91 ms
78,252 KB
testcase_19 AC 121 ms
81,880 KB
testcase_20 AC 113 ms
80,740 KB
testcase_21 AC 65 ms
73,260 KB
testcase_22 AC 100 ms
79,500 KB
testcase_23 AC 161 ms
86,008 KB
testcase_24 AC 163 ms
86,084 KB
testcase_25 AC 208 ms
85,984 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)]
seen = [0] * m
adopt = [0] * n
ans = [0] * n

for j in range(m):
	var = [[] for i in range(m)]
	for i in range(n):
		if adopt[i] == 1: continue
		var[t[i][j]].append(i)

	for i in range(m):
		if seen[i] >= a[i]: continue
		left = a[i] - seen[i]
		var[i].sort()
		var[i] = var[i][:min(len(var[i]), left)]
		for x in var[i]:
			adopt[x] = 1
			seen[i] += 1
			ans[x] = i

print(*ans)
0