結果

問題 No.2432 Flip and Move
ユーザー chineristACchineristAC
提出日時 2023-08-18 23:17:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 2,893 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 267,136 KB
最終ジャッジ日時 2024-05-06 05:56:55
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,768 KB
testcase_01 AC 31 ms
11,136 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import *

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

class SegmentTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        self.size = n
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        k += self.num
        self.tree[k] = self.segfunc(self.tree[k],x)
        while k > 1:
            k >>= 1
            self.tree[k] = self.segfunc(self.tree[2*k], self.tree[2*k+1])

    def query(self, l, r):
        if r==self.size:
            r = self.num

        res = self.ide_ele

        l += self.num
        r += self.num
        right = []
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                right.append(self.tree[r-1])
            l >>= 1
            r >>= 1

        for e in right[::-1]:
            res = self.segfunc(res,e)
        return res

H,W = mi()
K = int(input())

visit = [[[0]*W for i in range(H)] for d in range(4)]
visit[0][0][0] = 0

trail = [(0,0)]
loop_l = -1
while True:
    d,pos = trail[-1]
    h,w = pos//W,pos % W

    if d & 1 == 0:
        if h+1 < H:
            h += 1
        else:
            d ^= 1
    else:
        if 0 <= h-1:
            h -= 1
        else:
            d ^= 1

    if d & 2 == 0:
        if w+1 < W:
            w += 1
        else:
            d ^= 2
    else:
        if 0 <= w-1:
            w -= 1
        else:
            d ^= 2
    
    if visit[d][h][w] == 0:
        visit[d][h][w] = 1
        trail.append((d,h*W+w))
    else:
        loop_l = trail.index((d,h*W+w))
        break

assert len(trail) <= 4 * H * W

if K <= len(trail):
    for i in range(H):
        for j in range(W):
            visit[0][i][j] = 0
    res = visit[0]
    for d,pos in trail[:K]:
        h,w = pos//W,pos % W
        res[h][w] ^= 1

    for i in range(H):
        S = "".join(["." if res[i][j]==0 else "#" for j in range(W)])
        print(S)
    exit()


L = len(trail) - loop_l
loop_cnt = (K-loop_l) // L

for i in range(H):
    for j in range(W):
        visit[0][i][j] = 0
res = visit[0]

for d,pos in trail[:loop_l]:
    h,w = pos//W,pos%W
    res[h][w] ^= 1
for d,pos in trail[loop_l:]:
    h,w = pos//W,pos%W
    if L & 1:
        res[h][w] ^= 1
for d,pos in trail[loop_l:loop_l+((K-loop_l)%L)]:
    h,w = pos//W,pos%W
    res[h][w] ^= 1

for i in range(H):
    S = "".join(["." if res[i][j]==0 else "#" for j in range(W)])
    print(S)
0