結果

問題 No.470 Inverse S+T Problem
ユーザー rlangevinrlangevin
提出日時 2024-02-04 14:13:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 4,206 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 81,640 KB
最終ジャッジ日時 2024-02-04 14:13:15
合計ジャッジ時間 4,108 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,460 KB
testcase_01 AC 36 ms
53,460 KB
testcase_02 AC 35 ms
53,460 KB
testcase_03 AC 35 ms
53,460 KB
testcase_04 AC 34 ms
53,460 KB
testcase_05 AC 53 ms
53,460 KB
testcase_06 AC 112 ms
81,640 KB
testcase_07 AC 102 ms
81,640 KB
testcase_08 AC 101 ms
81,640 KB
testcase_09 AC 36 ms
53,460 KB
testcase_10 AC 38 ms
55,604 KB
testcase_11 AC 46 ms
63,936 KB
testcase_12 AC 36 ms
53,460 KB
testcase_13 AC 38 ms
55,604 KB
testcase_14 AC 47 ms
63,936 KB
testcase_15 AC 40 ms
55,604 KB
testcase_16 AC 38 ms
55,604 KB
testcase_17 AC 39 ms
55,604 KB
testcase_18 AC 39 ms
55,604 KB
testcase_19 AC 39 ms
55,604 KB
testcase_20 AC 36 ms
53,460 KB
testcase_21 AC 45 ms
63,936 KB
testcase_22 AC 46 ms
63,936 KB
testcase_23 AC 47 ms
63,936 KB
testcase_24 AC 46 ms
63,936 KB
testcase_25 AC 45 ms
63,936 KB
testcase_26 AC 46 ms
63,936 KB
testcase_27 AC 45 ms
63,936 KB
testcase_28 AC 62 ms
72,808 KB
testcase_29 AC 57 ms
66,600 KB
testcase_30 AC 59 ms
70,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class DirectedGraph():
    def __init__(self, N):
        self.N = N
        self.G = [[] for i in range(N)]
        self.rG = [[] for i in range(N)]
        self.order = []
        self.used1 = [0] * N
        self.used2 = [0] * N
        self.group = [-1] * N
        self.label = 0
        self.seen = [0] * N
        self.Edge = set()

    def add_edge(self, u, v):
        #多重辺は排除する
        if (u, v) not in self.Edge:
            self.G[u].append(v)
            self.rG[v].append(u)
            self.Edge.add((u, v))

    def dfs(self, s):
        stack = [~s, s]
        while stack:
            u = stack.pop()
            if u >= 0:
                if self.used1[u]:
                    continue
                self.used1[u] = 1
                for v in self.G[u]:
                    if self.used1[v]:
                        continue
                    stack.append(~v)
                    stack.append(v)
            else:
                u = ~u
                if self.seen[u]:
                    continue
                self.seen[u]= 1
                self.order.append(u)

    def rdfs(self, s, num):
        stack = [s]
        while stack:
            u = stack.pop()
            if u >= 0:
                self.used2[u] = 1
                self.group[u] = num
                for v in self.rG[u]:
                    if self.used2[v]:
                        continue
                    stack.append(v)

    def scc(self):
        for i in range(self.N):
            if self.used1[i]:
                continue
            self.dfs(i)
        for s in reversed(self.order):
            if self.used2[s]:
                continue
            self.rdfs(s, self.label)
            self.label += 1
        return self.label, self.group

    def construct(self):
        nG = [set() for _ in range(self.label)]
        mem = [[] for i in range(self.label)]
        for s in range(self.N):
            now = self.group[s]
            for u in self.G[s]:
                if now == self.group[u]:
                    continue
                nG[now].add(self.group[u])
            mem[now].append(s)
        return nG, mem


class TwoSAT():
    def __init__(self, N):
        self.G = DirectedGraph(2 * N)
        
    def add(self, x1, x2, f1, f2):
        if f1 == True and f2 == True:
            # ¬x1∪¬x2
            # (x1⇒¬x2)∩(x2⇒¬x1)
            self.G.add_edge(x1, x2 + N)
            self.G.add_edge(x2, x1 + N)
            
        if f1 == True and f2 == False:
            # ¬x1∪x2
            # (x1⇒x2)∩(¬x2⇒¬x1)
            self.G.add_edge(x1, x2)
            self.G.add_edge(x2 + N, x1 + N)
        
        if f1 == False and f2 == True:
            # x1∪¬x2
            # (¬x1⇒¬x2)∩(x2⇒x1)
            self.G.add_edge(x1 + N, x2 + N)
            self.G.add_edge(x2, x1)
            
        if f1 == False and f2 == False:
            # x1∪x2
            # (¬x1⇒x2)∩(¬x2⇒x1)
            self.G.add_edge(x1 + N, x2)
            self.G.add_edge(x2 + N, x1)
            
    def check(self):
        _, group = self.G.scc()
        ans = []
        for i in range(N):
            if group[i] == group[i + N]:
                print("Impossible")
                exit()
            if group[i] > group[i + N]:
                ans.append(1)
            else:
                ans.append(0)
        return ans

N = int(input())
U = []
for i in range(N):
    U.append(input())
    
if N >= 53:
    print("Impossible")
    exit()
    
TS = TwoSAT(N)
for i in range(N):
    for j in range(i + 1, N):
        ui01, ui13, ui02, ui23 = U[i][0:1], U[i][1:3], U[i][0:2], U[i][2:3]
        uj01, uj13, uj02, uj23 = U[j][0:1], U[j][1:3], U[j][0:2], U[j][2:3]
        if ui01 == uj01 or ui13 == uj13:
            TS.add(i, j, True, True)
        if ui01 == uj23 or ui13 == uj02:
            TS.add(i, j, True, False)
        if ui23 == uj01 or ui02 == uj13:
            TS.add(i, j, False, True)
        if ui23 == uj23 or ui02 == uj02:
            TS.add(i, j, False, False)
            
ans = TS.check()
for i in range(N):
    if ans[i]:
        print(U[i][0:1], U[i][1:3])
    else:
        print(U[i][0:2], U[i][2:3])
0