結果

問題 No.2680 研究室配属
ユーザー Yakumo221Yakumo221
提出日時 2024-03-20 21:24:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-09-30 07:10:22
合計ジャッジ時間 3,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 42 ms
58,240 KB
testcase_04 AC 42 ms
58,624 KB
testcase_05 AC 45 ms
61,824 KB
testcase_06 AC 47 ms
63,104 KB
testcase_07 AC 45 ms
63,360 KB
testcase_08 AC 48 ms
62,976 KB
testcase_09 AC 49 ms
61,440 KB
testcase_10 AC 66 ms
76,288 KB
testcase_11 AC 68 ms
76,672 KB
testcase_12 AC 72 ms
76,528 KB
testcase_13 AC 69 ms
76,652 KB
testcase_14 AC 75 ms
76,544 KB
testcase_15 AC 57 ms
65,664 KB
testcase_16 AC 97 ms
79,956 KB
testcase_17 AC 67 ms
76,544 KB
testcase_18 AC 84 ms
77,440 KB
testcase_19 AC 113 ms
80,896 KB
testcase_20 AC 103 ms
79,616 KB
testcase_21 AC 65 ms
71,552 KB
testcase_22 AC 96 ms
78,720 KB
testcase_23 AC 143 ms
85,120 KB
testcase_24 AC 144 ms
85,120 KB
testcase_25 AC 156 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int, input().split())
alist = list(map(int, input().split()))

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

que = list(range(n)[::-1])

cntlist = [0 for i in range(m)]
ans = [0 for i in range(n)]

for i in range(m):
    nq = []

    while que:
        hito = que.pop()
        heya = tlist[hito][i]

        if cntlist[heya] < alist[heya]:
            cntlist[heya] += 1
            ans[hito] = heya
        else:
            nq.append(hito)
    
    que = sorted(nq, reverse=True)

print(*ans)
0