結果

問題 No.2680 研究室配属
ユーザー flygonflygon
提出日時 2024-03-20 21:14:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 87,016 KB
最終ジャッジ日時 2024-09-30 07:00:50
合計ジャッジ時間 3,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,956 KB
testcase_01 AC 40 ms
55,604 KB
testcase_02 AC 41 ms
56,148 KB
testcase_03 AC 45 ms
63,032 KB
testcase_04 AC 46 ms
62,244 KB
testcase_05 AC 49 ms
66,336 KB
testcase_06 AC 52 ms
68,972 KB
testcase_07 AC 52 ms
67,804 KB
testcase_08 AC 51 ms
66,080 KB
testcase_09 AC 50 ms
64,368 KB
testcase_10 AC 69 ms
76,884 KB
testcase_11 AC 76 ms
77,244 KB
testcase_12 AC 79 ms
77,976 KB
testcase_13 AC 72 ms
77,456 KB
testcase_14 AC 81 ms
77,832 KB
testcase_15 AC 53 ms
68,832 KB
testcase_16 AC 104 ms
80,172 KB
testcase_17 AC 67 ms
76,800 KB
testcase_18 AC 83 ms
78,340 KB
testcase_19 AC 112 ms
81,332 KB
testcase_20 AC 102 ms
80,492 KB
testcase_21 AC 56 ms
72,808 KB
testcase_22 AC 94 ms
79,156 KB
testcase_23 AC 141 ms
84,684 KB
testcase_24 AC 135 ms
85,104 KB
testcase_25 AC 166 ms
87,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())
a = list(map(int,input().split()))
t = [list(map(int,input().split()))[::-1] for i in range(n)]
now = [[] for i in range(m)]


left = [i for i in range(n)]
for i in range(m):
    for i in left:
        if not t[i]: continue
        x = t[i].pop()
        now[x].append(i)
    new = []
    for i in range(m):
        while len(now[i]) > a[i]:
            new.append(now[i].pop())
    left = new
    left.sort()

ans = [0]*n
for i in range(m):
    for j in now[i]:
        ans[j] = i

print(*ans)
0