結果

問題 No.918 LISGRID
ユーザー vwxyzvwxyz
提出日時 2024-04-17 20:03:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 782 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-10-09 14:07:59
合計ジャッジ時間 13,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 481 ms
50,048 KB
testcase_02 AC 167 ms
23,808 KB
testcase_03 AC 225 ms
29,312 KB
testcase_04 AC 181 ms
24,704 KB
testcase_05 AC 566 ms
58,752 KB
testcase_06 AC 523 ms
55,040 KB
testcase_07 AC 732 ms
73,856 KB
testcase_08 AC 441 ms
48,256 KB
testcase_09 AC 574 ms
60,160 KB
testcase_10 AC 594 ms
59,904 KB
testcase_11 AC 590 ms
59,904 KB
testcase_12 AC 626 ms
64,384 KB
testcase_13 AC 518 ms
54,144 KB
testcase_14 AC 688 ms
70,016 KB
testcase_15 AC 782 ms
77,312 KB
testcase_16 AC 293 ms
35,712 KB
testcase_17 AC 322 ms
37,504 KB
testcase_18 AC 313 ms
35,712 KB
testcase_19 AC 108 ms
18,432 KB
testcase_20 AC 403 ms
45,184 KB
testcase_21 AC 135 ms
20,864 KB
testcase_22 AC 94 ms
17,152 KB
testcase_23 AC 251 ms
31,744 KB
testcase_24 AC 42 ms
12,160 KB
testcase_25 AC 32 ms
11,008 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 30 ms
11,008 KB
testcase_28 AC 30 ms
10,880 KB
testcase_29 AC 30 ms
10,880 KB
testcase_30 AC 31 ms
11,008 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 30 ms
10,880 KB
testcase_33 AC 30 ms
10,880 KB
testcase_34 AC 45 ms
12,416 KB
testcase_35 AC 61 ms
13,952 KB
testcase_36 AC 37 ms
11,648 KB
testcase_37 AC 388 ms
44,032 KB
testcase_38 AC 272 ms
33,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
A.sort()
B.sort()
degree=[0]*H*W
edges=[]
for h in range(H):
    for w in range(A[h]-1):
        edges.append((h*W+w,h*W+w+1))
    for w in range(A[h]-1,W-1):
        edges.append((h*W+w+1,h*W+w))
for w in range(W):
    for h in range(B[w]-1):
        edges.append((h*W+w,(h+1)*W+w))
    for h in range(B[w]-1,H-1):
        edges.append(((h+1)*W+w,h*W+w))
graph=[[] for x in range(H*W)]
for x,y in edges:
    graph[x].append(y)
    degree[y]+=1
queue=[x for x in range(H*W) if degree[x]==0]
ans_lst=[[None]*W for h in range(H)]
n=1
while queue:
    x=queue.pop()
    h,w=divmod(x,W)
    ans_lst[h][w]=n
    n+=1
    for y in graph[x]:
        degree[y]-=1
        if degree[y]==0:
            queue.append(y)
for h in range(H):
    print(*ans_lst[h])
for h in range(H):
    for w in range(W):
        assert ans_lst[h][w]!=None
0