結果

問題 No.1078 I love Matrix Construction
ユーザー tamatotamato
提出日時 2020-06-12 23:09:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,935 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 87,776 KB
実行使用メモリ 236,304 KB
最終ジャッジ日時 2023-09-06 11:15:18
合計ジャッジ時間 13,563 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
71,688 KB
testcase_01 AC 81 ms
71,916 KB
testcase_02 AC 288 ms
99,768 KB
testcase_03 AC 438 ms
133,672 KB
testcase_04 AC 560 ms
156,424 KB
testcase_05 AC 528 ms
144,036 KB
testcase_06 AC 282 ms
98,952 KB
testcase_07 AC 205 ms
86,092 KB
testcase_08 AC 486 ms
142,980 KB
testcase_09 WA -
testcase_10 AC 958 ms
236,304 KB
testcase_11 AC 575 ms
159,732 KB
testcase_12 AC 835 ms
206,380 KB
testcase_13 AC 891 ms
224,928 KB
testcase_14 AC 656 ms
176,588 KB
testcase_15 AC 860 ms
214,844 KB
testcase_16 AC 200 ms
85,476 KB
testcase_17 AC 83 ms
72,284 KB
testcase_18 AC 271 ms
93,672 KB
testcase_19 AC 350 ms
112,968 KB
testcase_20 AC 350 ms
112,556 KB
testcase_21 AC 135 ms
79,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    def fin():
        print(-1)
        exit()

    N = int(input())
    S = list(map(int, input().split()))
    T = list(map(int, input().split()))
    U = list(map(int, input().split()))

    def idx(i, j, flg):
        return i * N + j + 1 + flg * N*N

    adj = [[] for _ in range(N*N*2 + 1)]
    adj_rev = [[] for _ in range(N * N * 2 + 1)]
    for i in range(N):
        s = S[i] - 1
        t = T[i] - 1
        u = U[i]
        if u == 0:
            flg_s = 1
            flg_t = 1
        elif u == 1:
            flg_s = 0
            flg_t = 1
        elif u == 2:
            flg_s = 1
            flg_t = 0
        else:
            flg_s = 0
            flg_t = 0
        for j in range(N):
            a = idx(s, j, flg_s)
            b = idx(j, t, flg_t)
            if a > N*N:
                adj[a - N*N].append(b)
                adj_rev[b].append(a - N*N)
            else:
                adj[a + N*N].append(b)
                adj_rev[b].append(a + N*N)
            if b > N*N:
                adj[b - N*N].append(a)
                adj_rev[a].append(b - N*N)
            else:
                adj[b + N*N].append(a)
                adj_rev[a].append(b + N*N)

    # SCC
    seen = [0] * (N*N*2 + 1)
    order = []
    for v0 in range(1, N*N*2 + 1):
        if seen[v0]:
            continue
        st = deque()
        st.append(v0)
        seen[v0] = 1
        while st:
            v = st.pop()
            if v < 0:
                order.append(-v)
            else:
                st.append(-v)
                for u in adj[v]:
                    if not seen[u]:
                        seen[u] = 1
                        st.append(u)

    order.reverse()
    seen2 = [0] * (N*N*2 + 1)
    G = []
    G_idx = [-1] * (N*N*2 + 1)
    for v0 in order:
        if seen2[v0]:
            continue
        st = deque()
        st.append(v0)
        seen2[v0] = 1
        G.append([v0])
        G_idx[v0] = len(G) - 1
        while st:
            v = st.pop()
            for u in adj_rev[v]:
                if seen2[u]:
                    continue
                G[-1].append(u)
                G_idx[u] = len(G) - 1
                seen2[u] = 1
                st.append(u)

    for v in range(1, N*N+1):
        v_ = v + N*N
        if G_idx[v] == G_idx[v_]:
            fin()

    ans = [[0] * N for _ in range(N)]
    for i in range(N):
        for j in range(N):
            v = idx(i, j, 0)
            v_ = idx(i, j, 1)
            if G_idx[v] < G_idx[v_]:
                ans[i][j] = 1
    for i in range(N):
        print(*ans[i])

    # check
    for i in range(N):
        s = S[i] - 1
        t = T[i] - 1
        u = U[i]
        for j in range(N):
            if u == ans[s][j] + ans[j][t] * 2:
                assert False


if __name__ == '__main__':
    main()
0