結果

問題 No.470 Inverse S+T Problem
ユーザー nebukuro09nebukuro09
提出日時 2016-12-26 11:18:12
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 3,126 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 104,396 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-03 00:10:07
合計ジャッジ時間 2,303 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,384 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 1 ms
4,376 KB
testcase_30 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

class Kosaraju {
    int N;
    int[][] adj;
    int[][] rev_adj;
    int[] group;
    bool[] group_prev;
    int[][] group_n;

    this(int n) {
        N = n;
        adj = new int[][](N);
        rev_adj = new int[][](N);
        group = new int[](N);
    }

    void add_edge(int from, int to) {
        adj[from] ~= to;
        rev_adj[to] ~= from;
    }

    void run() {
        int[] ord;
        auto used = new bool[](N);
        foreach (i; 0..N)
            if (!used[i])
                dfs1(i, ord, used);
        foreach (i; 0..N) used[i] = false;
        auto g_num = 0;
        foreach (i; iota(N-1, -1, -1))
            if (!used[ord[i]]) {
                dfs2(ord[i], g_num, used);
                g_num += 1;
            }
        group_n = new int[][](group.reduce!(max)+1);
        foreach (i; 0..N)
            group_n[group[i]] ~= i;
        group_prev = new bool[](group.reduce!(max)+1);
        foreach (i; 0..N)
            foreach (j; adj[i])
                if (group[i] != group[j])
                    group_prev[group[j]] = true;
    }
  
    void dfs1(int from, ref int[] ord, ref bool[] used) {
        if (used[from]) return;
        used[from] = true;
        foreach (to; adj[from]) 
            if (!used[to])
                dfs1(to, ord, used);
        ord ~= from;
    }

    void dfs2(int from, int g_num, ref bool[] used) {
        if (used[from]) return;
        used[from] = true;
        group[from] = g_num;
        foreach (to; rev_adj[from])
            if (!used[to])
                dfs2(to, g_num, used);
    }

}

void main() {
    auto N = readln.chomp.to!int;
        
    if (N > 52) {
        writeln("Impossible");
        return;
    }

    auto U = N.iota.map!(_ => readln.chomp).array;
    auto G = new Kosaraju(2*N);
    
    foreach (i; 0..N) {
        foreach (j; i+1..N) {
            // (xi => not xj) & (xj => not xi)
            if (U[i][0] == U[j][0] || U[i][1..3] == U[j][1..3])
                G.add_edge(i, j+N), G.add_edge(j, i+N);
            // (xi => xj) & (not xj => not xi)
            if (U[i][0] == U[j][2] || U[i][1..3] == U[j][0..2])
                G.add_edge(i, j), G.add_edge(j+N, i+N);
            // (not xi => not xj) & (xj => xi)
            if (U[i][2] == U[j][0] || U[i][0..2] == U[j][1..3])
                G.add_edge(i+N, j+N), G.add_edge(j, i);
            // (not xi => xj) & (not xj => xi)
            if (U[i][2] == U[j][2] || U[i][0..2] == U[j][0..2])
                G.add_edge(i+N, j), G.add_edge(j+N, i);
        }
    }

    G.run;

    auto div = new bool[](N);
    foreach (i; 0..N) {
        if (G.group[i] == G.group[i+N]) {
            writeln("Impossible");
            return;
        }
        else if (G.group[i] > G.group[i+N]) {
            div[i] = true;
        }
    }

    foreach (i; 0..N) {
        if (div[i]) writeln(U[i][0], " ", U[i][1..3]);
        else        writeln(U[i][0..2], " ", U[i][2]);
    }
}
0