結果

問題 No.1434 Make Maze
ユーザー mkawa2mkawa2
提出日時 2021-03-19 23:26:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,378 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 101,492 KB
最終ジャッジ日時 2024-04-29 19:17:08
合計ジャッジ時間 6,902 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,260 KB
testcase_01 AC 39 ms
53,400 KB
testcase_02 AC 184 ms
101,492 KB
testcase_03 AC 179 ms
101,188 KB
testcase_04 AC 39 ms
52,896 KB
testcase_05 AC 39 ms
54,044 KB
testcase_06 AC 39 ms
53,284 KB
testcase_07 AC 40 ms
53,156 KB
testcase_08 AC 39 ms
53,564 KB
testcase_09 AC 40 ms
53,864 KB
testcase_10 AC 40 ms
53,744 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 45 ms
60,852 KB
testcase_14 AC 96 ms
77,732 KB
testcase_15 AC 126 ms
83,640 KB
testcase_16 AC 102 ms
78,644 KB
testcase_17 AC 97 ms
77,404 KB
testcase_18 AC 109 ms
79,532 KB
testcase_19 AC 145 ms
90,032 KB
testcase_20 AC 42 ms
55,456 KB
testcase_21 AC 44 ms
58,964 KB
testcase_22 AC 43 ms
56,572 KB
testcase_23 AC 40 ms
54,404 KB
testcase_24 AC 124 ms
85,328 KB
testcase_25 AC 158 ms
92,612 KB
testcase_26 AC 105 ms
77,988 KB
testcase_27 AC 134 ms
85,728 KB
testcase_28 AC 101 ms
78,012 KB
testcase_29 AC 83 ms
76,892 KB
testcase_30 AC 108 ms
79,896 KB
testcase_31 AC 116 ms
79,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.readline().rstrip().encode()
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**16
# md = 998244353
md = 10**9+7

class UnionFind:
    def __init__(self, n):
        self.state = [-1]*n
        self.size_table = [1]*n
        # cntはグループ数
        self.cnt = n

    def root(self, u):
        v = self.state[u]
        if v < 0: return u
        self.state[u] = res = self.root(v)
        return res

    def merge(self, u, v):
        ru = self.root(u)
        rv = self.root(v)
        if ru == rv: return
        du = self.state[ru]
        dv = self.state[rv]
        if du > dv: ru, rv = rv, ru
        if du == dv: self.state[ru] -= 1
        self.state[rv] = ru
        self.cnt -= 1
        self.size_table[ru] += self.size_table[rv]
        return

    # グループの要素数
    def size(self, u):
        return self.size_table[self.root(u)]

H, W, x = LI()
h, w = (H+1)//2, (W+1)//2
uf = UnionFind(H*W)
mn = H+W-2
mx = (h*w-1)*2 if h & 1 or w & 1 else (h*w-2)*2

if x & 1 or x > mx or x < mn or x%4 != mn%4:
    print(-1)
    exit()

tt = [[-1]*W for _ in range(H)]
for i in range(H):
    for j in range(W):
        if i & 1 == 0 and j & 1 == 0: tt[i][j] = 0
        if i & 1 and j & 1: tt[i][j] = 1

i = j = 0
di, dj = 0, 1
zgzg = False
while 1:
    if H-1-i+W-1-j == x: break
    if zgzg:
        if i == W-3:
            if j%4: di, dj = 0, 1
            else: di, dj = 1, 0
        else:
            if j%4: di, dj = -1, 0
            else: di, dj = 0, 1
    else:
        if j == W-1:
            if i%4 == 0: di, dj = 1, 0
            else: di, dj = 0, -1
        elif j == 0:
            if i%4: di, dj = 1, 0
            else: di, dj = 0, 1

    u = i*W+j
    v = (i+di*2)*W+j+dj*2
    uf.merge(u, v)
    i, j = i+di, j+dj
    tt[i][j] = 0
    i, j = i+di, j+dj
    tt[i][j] = 0
    x -= 2
    if h & 1 == 0 and i == H-3: zgzg = True

while i+2 < H and tt[i+1][j] == -1:
    u = i*W+j
    v = (i+2)*W+j
    uf.merge(u, v)
    tt[i+1][j] = 0
    i += 2
while j+2 < W and tt[i][j+1] == -1:
    u = i*W+j
    v = i*W+j+2
    uf.merge(u, v)
    tt[i][j+1] = 0
    j += 2
while i+2 < H and tt[i+1][j] == -1:
    u = i*W+j
    v = (i+2)*W+j
    uf.merge(u, v)
    tt[i+1][j] = 0
    i += 2
# p2D(tt)
# print()

for i in range(0, H, 2):
    for j in range(0, W-2, 2):
        if tt[i][j+1] == 0: continue
        u = i*W+j
        v = i*W+j+2
        if uf.root(u) == uf.root(v): tt[i][j+1] = 1
        else: tt[i][j+1] = 0
        uf.merge(u, v)
for j in range(0, W, 2):
    for i in range(0, H-2, 2):
        if tt[i+1][j] == 0: continue
        u = i*W+j
        v = (i+2)*W+j
        if uf.root(u) == uf.root(v): tt[i+1][j] = 1
        else: tt[i+1][j] = 0
        uf.merge(u, v)
# p2D(tt)

for row in tt:
    print("".join("#" if a else "." for a in row))
0