結果

問題 No.1910 High Element on Grid
ユーザー tktk_snsntktk_snsn
提出日時 2022-04-22 22:54:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,581 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 288,620 KB
最終ジャッジ日時 2024-06-24 04:14:16
合計ジャッジ時間 5,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,520 KB
testcase_01 WA -
testcase_02 AC 47 ms
54,272 KB
testcase_03 AC 46 ms
54,016 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


H, W = map(int, input().split())
R = list(map(int, input().split()))
C = list(map(int, input().split()))


def F(i, j):
    return i * W + j


def parse(id):
    return divmod(id, W)


deg = [0] * (H * W)
G = [[] for _ in range(H * W)]

for i, r in enumerate(R):
    for j in range(r-1):
        G[F(i, j+1)].append(F(i, j))
        deg[F(i, j)] += 1
    for j in range(r-1, W-1):
        G[F(i, j)].append(F(i, j+1))
        deg[F(i, j+1)] += 1

for j, c in enumerate(C):
    for i in range(c-1):
        G[F(i+1, j)].append(F(i, j))
        deg[F(i, j)] += 1
    for i in range(c-1, H-1):
        G[F(i, j)].append(F(i+1, j))
        deg[F(i+1, j)] += 1


def prin():
    for i in range(H):
        for j in range(W):
            print(deg[i*W+j], end=" ")
        print()
    print()


val = H * W + 10
ans = [[-1] * W for _ in range(H)]
cand = list(range(H * W))
que = deque()
for i, d in enumerate(deg):
    if d == 0:
        que.append(i)
while que or cand:
    found = False
    if que:
        while True:
            s = que.popleft()
            x, y = parse(s)
            if ans[x][y] == -1:
                found = True
                break
    else:
        cand.sort(key=lambda x: (-deg[x]))
        while cand:
            s = cand.pop()
            x, y = parse(s)
            if ans[x][y] == -1:
                found = True
                break
    if not found:
        break
    ans[x][y] = val
    val -= 1
    for t in G[s]:
        deg[t] -= 1
        if deg[t] == 0:
            que.append(t)

for a in ans:
    print(*a)
0