結果

問題 No.1078 I love Matrix Construction
ユーザー gr1msl3ygr1msl3y
提出日時 2022-01-27 23:22:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,025 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 268,812 KB
最終ジャッジ日時 2024-06-07 21:10:37
合計ジャッジ時間 14,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 285 ms
102,576 KB
testcase_03 AC 542 ms
148,732 KB
testcase_04 AC 705 ms
178,340 KB
testcase_05 WA -
testcase_06 AC 274 ms
103,136 KB
testcase_07 AC 189 ms
85,972 KB
testcase_08 AC 629 ms
157,776 KB
testcase_09 WA -
testcase_10 AC 1,380 ms
264,932 KB
testcase_11 AC 720 ms
175,972 KB
testcase_12 AC 999 ms
241,820 KB
testcase_13 AC 1,206 ms
268,812 KB
testcase_14 AC 809 ms
203,064 KB
testcase_15 AC 1,106 ms
248,036 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 223 ms
94,288 KB
testcase_19 AC 365 ms
117,768 KB
testcase_20 AC 356 ms
118,256 KB
testcase_21 AC 106 ms
77,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict


def scc(N, G, RG):
    order = []
    seen = [0]*N
    group = [None]*N

    def dfs(s):
        task = deque([(s, 1), (s, 0)])
        while task:
            v, t = task.pop()
            if t:
                if seen[v] == 2:
                    continue
                seen[v] = 2
                order.append(v)
            else:
                if seen[v]:
                    continue
                seen[v] = 1
                for e in G[v]:
                    if not seen[e]:
                        task.append((e, 1))
                        task.append((e, 0))

    def rdfs(s, col):
        task = deque([s])
        while task:
            v = task.pop()
            if seen[v]:
                continue
            seen[v] = 1
            group[v] = col
            for e in RG[v]:
                if not seen[e]:
                    task.append(e)
    for i in range(N):
        if not seen[i]:
            dfs(i)
    seen = [0]*N
    label = 0
    for s in reversed(order):
        if not seen[s]:
            rdfs(s, label)
            label += 1
    return label, group


N = int(input())
S = list(map(lambda x: int(x)-1, input().split()))
T = list(map(lambda x: int(x)-1, input().split()))
U = list(map(int, input().split()))

graph = defaultdict(list)
rgraph = defaultdict(list)
for i in range(N):
    for j in range(N):
        s, t, u = S[i], T[i], U[i]
        x = s*N+j
        y = j*N+t
        nx = x+N**2*(u % 2)
        ny = y+N**2*(u//2)
        graph[nx].append((ny+N**2) % (2*N**2))
        rgraph[(ny+N**2) % (2*N**2)].append(nx)
        graph[ny].append((nx+N**2) % (2*N**2))
        rgraph[(nx+N**2) % (2*N**2)].append(ny)

M, sccgraph = scc(2*N**2, graph, rgraph)
ans = [[0]*N for _ in range(N)]
for i in range(N):
    for j in range(N):
        n = i*N+j
        if sccgraph[n] == sccgraph[n+N**2]:
            print(-1)
            exit()
        elif sccgraph[n] > sccgraph[n+N**2]:
            ans[i][j] = 1

for a in ans:
    print(*a)
0