結果

問題 No.470 Inverse S+T Problem
ユーザー eitahoeitaho
提出日時 2016-12-20 01:01:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 5,830 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 110,488 KB
実行使用メモリ 23,720 KB
最終ジャッジ日時 2023-08-24 01:04:37
合計ジャッジ時間 6,106 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
21,644 KB
testcase_01 AC 61 ms
21,560 KB
testcase_02 AC 61 ms
21,628 KB
testcase_03 AC 62 ms
21,716 KB
testcase_04 AC 62 ms
23,600 KB
testcase_05 AC 61 ms
21,548 KB
testcase_06 AC 56 ms
23,508 KB
testcase_07 AC 56 ms
21,540 KB
testcase_08 AC 56 ms
21,540 KB
testcase_09 AC 62 ms
23,660 KB
testcase_10 AC 62 ms
21,716 KB
testcase_11 AC 63 ms
19,524 KB
testcase_12 AC 61 ms
21,580 KB
testcase_13 AC 62 ms
21,568 KB
testcase_14 AC 64 ms
23,600 KB
testcase_15 AC 61 ms
21,636 KB
testcase_16 AC 63 ms
23,552 KB
testcase_17 AC 62 ms
23,600 KB
testcase_18 AC 63 ms
23,588 KB
testcase_19 AC 62 ms
19,604 KB
testcase_20 AC 63 ms
23,692 KB
testcase_21 AC 63 ms
21,568 KB
testcase_22 AC 64 ms
23,720 KB
testcase_23 AC 63 ms
23,684 KB
testcase_24 AC 63 ms
23,668 KB
testcase_25 AC 63 ms
21,688 KB
testcase_26 AC 63 ms
21,572 KB
testcase_27 AC 61 ms
21,564 KB
testcase_28 AC 57 ms
21,548 KB
testcase_29 AC 57 ms
21,576 KB
testcase_30 AC 56 ms
21,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Diagnostics;
using System.Numerics;
using Enu = System.Linq.Enumerable;

public class Program
{
    static readonly string NG = "Impossible";
    static readonly int Atmost = 52 + 52 * 52;

    public void Solve()
    {
        int N = Reader.Int();
        if (N > Atmost / 2) { Console.WriteLine(NG); return; }
        var S = Reader.StringArray(N);
        var scc = new StronglyConnectedComponent(N * 2);

        for (int a = 0; a < N; a++)
            for (int b = a + 1; b < N; b++)
                for (int alen = 1; alen <= 2; alen++)
                    for (int blen = 1; blen <= 2; blen++)
                    {
                        string a1 = S[a].Substring(0, alen), a2 = S[a].Substring(alen);
                        string b1 = S[b].Substring(0, blen), b2 = S[b].Substring(blen);
                        int aid = a + (alen - 1) * N;
                        int bid = b + (2 - blen) * N;
                        if (a1 == b1 || a1 == b2 || a2 == b1 || a2 == b2)
                        {
                            scc.AddEdge(a + (alen - 1) * N, b + (2 - blen) * N);
                            scc.AddEdge(b + (blen - 1) * N, a + (2 - alen) * N);
                        }
                    }
        scc.Decompose();
        if (Enu.Range(0, N).Any(i => scc.Component(i) == scc.Component(N + i)))
        {
            Console.WriteLine(NG);
            return;
        }
        for (int i = 0; i < N; i++)
            if (scc.Component(i) > scc.Component(N + i))
                Console.WriteLine(S[i].Insert(1, " "));
            else
                Console.WriteLine(S[i].Insert(2, " "));
    }
}


class Component
{
    public int[] Vertexes;
    public int[] Edges;
}

class StronglyConnectedComponent
{
    public int NumComponents { get; private set; }
    public int[] Vertexes(int at) { return vertexes[component[at]].ToArray(); }
    public int Component(int v) { return component[v]; }
    private readonly int[] component;
    private readonly List<int>[] E, RevE;
    private readonly List<List<int>> vertexes = new List<List<int>>();

    public StronglyConnectedComponent(int N)
    {
        component = new int[N];
        E = new List<int>[N];
        RevE = new List<int>[N];
        for (int i = 0; i < N; i++)
        {
            component[i] = -1;
            E[i] = new List<int>();
            RevE[i] = new List<int>();
        }
    }
    public void AddEdge(int from, int to)
    {
        E[from].Add(to);
        RevE[to].Add(from);
    }
    public void Decompose()
    {
        var vs = new List<int>();
        var seen = new bool[E.Length];
        for (int v = 0; v < E.Length; v++)
            if (!seen[v]) DFS(v, seen, vs);
        vs.Reverse();
        foreach (int v in vs)
            if (component[v] == -1)
            {
                vertexes.Add(new List<int>());
                DFSRev(v, NumComponents++);
            }
    }
    public Component[] GetComponents()
    {
        var components = new Component[vertexes.Count];
        for (int i = 0; i < components.Length; i++)
        {
            components[i] = new Component();
            components[i].Vertexes = vertexes[i].ToArray();
            var es = new HashSet<int>();
            foreach (int v in components[i].Vertexes)
                foreach (int next in E[v])
                    if (component[next] != i)
                        es.Add(component[next]);
            components[i].Edges = es.ToArray();
        }
        return components;
    }

    private void DFS(int v, bool[] seen, List<int> vs)
    {
        seen[v] = true;
        foreach (int next in E[v])
            if (!seen[next]) DFS(next, seen, vs);
        vs.Add(v);
    }
    private void DFSRev(int v, int num)
    {
        component[v] = num;
        vertexes[num].Add(v);
        foreach (int next in RevE[v])
            if (component[next] == -1) DFSRev(next, num);
    }
}


class Entry { static void Main() { new Program().Solve(); } }
class Reader
{
    static TextReader reader = Console.In;
    static readonly char[] separator = { ' ' };
    static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries;
    static string[] A = new string[0];
    static int i;
    static void Init() { A = new string[0]; }
    public static void Set(TextReader r) { reader = r; Init(); }
    public static void Set(string file) { reader = new StreamReader(file); Init(); }
    public static bool HasNext() { return CheckNext(); }
    public static string String() { return Next(); }
    public static int Int() { return int.Parse(Next()); }
    public static long Long() { return long.Parse(Next()); }
    public static double Double() { return double.Parse(Next()); }
    public static int[] IntLine() { return Array.ConvertAll(Split(Line()), int.Parse); }
    public static int[] IntArray(int N) { return Range(N, Int); }
    public static int[][] IntTable(int H) { return Range(H, IntLine); }
    public static string[] StringArray(int N) { return Range(N, Next); }
    public static string[][] StringTable(int N) { return Range(N, () => Split(Line())); }
    public static string Line() { return reader.ReadLine().Trim(); }
    public static T[] Range<T>(int N, Func<T> f) { var r = new T[N]; for (int i = 0; i < N; r[i++] = f()) ; return r; }
    static string[] Split(string s) { return s.Split(separator, op); }
    static string Next() { CheckNext(); return A[i++]; }
    static bool CheckNext()
    {
        if (i < A.Length) return true;
        string line = reader.ReadLine();
        if (line == null) return false;
        if (line == "") return CheckNext();
        A = Split(line);
        i = 0;
        return true;
    }
}
0