結果

問題 No.918 LISGRID
ユーザー mkawa2mkawa2
提出日時 2019-10-27 14:22:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 517 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,948 KB
最終ジャッジ日時 2024-09-14 21:02:14
合計ジャッジ時間 10,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 312 ms
40,964 KB
testcase_02 AC 124 ms
19,288 KB
testcase_03 AC 156 ms
23,672 KB
testcase_04 AC 127 ms
19,696 KB
testcase_05 AC 386 ms
44,300 KB
testcase_06 AC 356 ms
41,104 KB
testcase_07 AC 495 ms
53,012 KB
testcase_08 AC 306 ms
37,268 KB
testcase_09 AC 391 ms
44,304 KB
testcase_10 AC 388 ms
43,664 KB
testcase_11 AC 387 ms
43,828 KB
testcase_12 AC 425 ms
47,888 KB
testcase_13 AC 345 ms
40,592 KB
testcase_14 AC 469 ms
50,192 KB
testcase_15 AC 517 ms
55,948 KB
testcase_16 AC 196 ms
28,160 KB
testcase_17 AC 214 ms
28,412 KB
testcase_18 AC 199 ms
28,412 KB
testcase_19 AC 76 ms
15,784 KB
testcase_20 AC 269 ms
33,280 KB
testcase_21 AC 92 ms
17,772 KB
testcase_22 AC 69 ms
14,888 KB
testcase_23 AC 168 ms
25,344 KB
testcase_24 AC 37 ms
11,648 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,880 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 30 ms
10,880 KB
testcase_33 AC 29 ms
10,624 KB
testcase_34 AC 39 ms
11,904 KB
testcase_35 AC 49 ms
12,800 KB
testcase_36 AC 34 ms
11,264 KB
testcase_37 AC 260 ms
32,128 KB
testcase_38 AC 186 ms
26,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict

sys.setrecursionlimit(10 ** 6)
input = sys.stdin.readline

def main():
    def dfs(u):
        vis[u] = True
        for ku in to[u]:
            if vis[ku]: continue
            dfs(ku)
        top.append(u)
        return

    to = defaultdict(list)
    h, w = map(int, input().split())
    n = h * w
    aa = list(map(int, input().split()))
    bb = list(map(int, input().split()))
    aa.sort()
    bb.sort()
    for i, a in enumerate(aa):
        st = w * i + w - a
        for j in range(w - a):
            to[st - j] += [st - j - 1]
        for j in range(a - 1):
            to[st + j] += [st + j + 1]
    for j, b in enumerate(bb):
        st = w * (h - b) + j
        for i in range(h - b):
            to[st - i * w] += [st - (i + 1) * w]
        for i in range(b - 1):
            to[st + i * w] += [st + (i + 1) * w]
    #print(to)
    vis = [False] * n
    top = []
    for u in range(n):
        if vis[u]: continue
        dfs(u)
    #print(top)
    ans = [[-1] * w for _ in range(h)]
    for k, ij in enumerate(top[::-1]):
        i, j = divmod(ij, w)
        ans[i][j] = k + 1
    for x in ans:
        print(*x)

main()
0