結果

問題 No.1023 Cyclic Tour
ユーザー ひばちひばち
提出日時 2020-04-25 19:35:17
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 10,133 bytes
コンパイル時間 1,323 ms
コンパイル使用メモリ 115,328 KB
実行使用メモリ 109,396 KB
最終ジャッジ日時 2024-04-25 07:04:49
合計ジャッジ時間 31,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
20,352 KB
testcase_01 AC 33 ms
20,224 KB
testcase_02 AC 32 ms
20,480 KB
testcase_03 AC 33 ms
20,480 KB
testcase_04 AC 156 ms
29,824 KB
testcase_05 AC 163 ms
29,824 KB
testcase_06 AC 163 ms
30,080 KB
testcase_07 AC 157 ms
30,076 KB
testcase_08 AC 526 ms
71,392 KB
testcase_09 AC 499 ms
69,960 KB
testcase_10 AC 500 ms
70,500 KB
testcase_11 AC 564 ms
74,972 KB
testcase_12 AC 643 ms
88,708 KB
testcase_13 AC 606 ms
84,716 KB
testcase_14 AC 567 ms
83,428 KB
testcase_15 AC 630 ms
86,032 KB
testcase_16 AC 817 ms
90,980 KB
testcase_17 AC 825 ms
91,012 KB
testcase_18 AC 800 ms
85,624 KB
testcase_19 AC 789 ms
85,504 KB
testcase_20 AC 471 ms
38,656 KB
testcase_21 AC 482 ms
40,320 KB
testcase_22 AC 637 ms
56,608 KB
testcase_23 AC 660 ms
60,776 KB
testcase_24 AC 851 ms
81,256 KB
testcase_25 AC 468 ms
36,980 KB
testcase_26 AC 442 ms
33,908 KB
testcase_27 AC 385 ms
33,920 KB
testcase_28 AC 771 ms
77,152 KB
testcase_29 AC 790 ms
85,236 KB
testcase_30 AC 765 ms
72,248 KB
testcase_31 AC 689 ms
69,616 KB
testcase_32 AC 732 ms
75,888 KB
testcase_33 AC 732 ms
69,864 KB
testcase_34 AC 155 ms
30,848 KB
testcase_35 AC 293 ms
32,628 KB
testcase_36 AC 559 ms
47,360 KB
testcase_37 AC 670 ms
65,308 KB
testcase_38 AC 754 ms
81,112 KB
testcase_39 AC 678 ms
61,524 KB
testcase_40 AC 667 ms
62,072 KB
testcase_41 AC 641 ms
61,676 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 248 ms
32,380 KB
testcase_45 AC 707 ms
109,396 KB
testcase_46 AC 635 ms
101,948 KB
testcase_47 AC 308 ms
56,488 KB
testcase_48 AC 499 ms
60,556 KB
testcase_49 AC 476 ms
56,020 KB
testcase_50 AC 493 ms
61,944 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Linq;
using System.IO;
using System.Runtime.CompilerServices;
using System.Text;
using System.Diagnostics;
using System.Numerics;
using static System.Console;
using static System.Convert;
using static System.Math;
using static Template;
using Pi = Pair<int, int>;

class Solver
{
    public void Solve(Scanner sc)
    {
        int N, M;
        sc.Make(out N, out M);
        var uf = new UnionFind(N);
        var edge = Create(N, () => new List<int>());
        for(int i = 0; i < M; i++)
        {
            int a, b, c;
            sc.Make(out a, out b, out c);a--;b--;
            if (c==1&&!uf.Union(a, b)) Fail("Yes");
            if (c == 2) edge[a].Add(b);
        }
        var l = new List<int>();
        for (int i = 0; i < N; i++)
        {
            l.Add(uf[i]);
        }
        var scc = new StronglyConnectedComponents(uf.GroupCount);
        var ct = Create(uf.GroupCount, () => new List<int>());
        var d = Compression(l);
        for (int i = 0; i < N; i++) ct[d[uf[i]]].Add(i);
        foreach(var list in ct)
        {
            var cp = Compression(list);
            var st = new StronglyConnectedComponents(list.Count);
            foreach(var i in list)
            {
                foreach(var e in edge[i])
                    if (uf[i] == uf[e])
                    {
                        st.AddEdge(cp[i], cp[e]);
                    }
            }
            var p = st.Execute();
            if (p.Any(v => v.Count > 1)) Fail("Yes");
        }
        var use = Create(uf.GroupCount, () => new HashSet<int>());
        for(int i=0;i<N;i++)
            foreach(var e in edge[i])
                if (uf[e] != uf[i])
                {
                    if (use[d[uf[i]]].Contains(d[uf[e]])) continue;
                    scc.AddEdge(d[uf[i]], d[uf[e]]);
                    use[d[uf[i]]].Add(d[uf[e]]);
                }
        var s = scc.Execute();
        if (s.All(v => v.Count == 1)) Fail("No");
        else WriteLine("Yes");


    }
    public static Dictionary<T, int> Compression<T>(IList<T> A, int d = 0, Comparison<T> cmp = null)
    {
        cmp = cmp ?? Comparer<T>.Default.Compare;
        var dic = new Dictionary<T, int>();
        var cp = A.ToArray();
        Array.Sort(cp, (a, b) => cmp(a, b));
        for (var i = 0; i < cp.Length; i++)
            if (!dic.ContainsKey(cp[i]))
                dic[cp[i]] = d++;
        return dic;
    }
}

public class UnionFind
{
    public int GroupCount { get; private set; }
    protected int[] data;
    public virtual int this[int i] => Find(i);
    public UnionFind(int size)
    {
        data = Create(size, () => -1);
        GroupCount = size;
    }
    protected int Find(int i)
        => data[i] < 0 ? i : (data[i] = Find(data[i]));
    public int Size(int i)
        => -data[Find(i)];
    public virtual bool Union(int u, int v)
    {
        u = Find(u); v = Find(v);
        if (u == v) return false;
        if (data[u] > data[v])
            swap(ref u, ref v);
        GroupCount--;
        data[u] += data[v];
        data[v] = u;
        return true;
    }
}
public class StronglyConnectedComponents
{
    private List<int>[] g, rev;
    private Stack<int> st;
    private List<List<int>> scc;
    private int[] group;
    private bool[] use;
    public int Count { get; private set; }
    public int this[int i] { get { return group[i]; } }
    public List<int> KthGroup(int k) => scc[k];
    public StronglyConnectedComponents(int count)
    {
        g = Create(count, () => new List<int>());
        rev = Create(count, () => new List<int>());
        group = new int[count];
    }
    public void AddEdge(int from, int to)
    {
        g[from].Add(to);
        rev[to].Add(from);
    }
    /// <summary>
    /// O(V+E)
    /// </summary>
    /// <returns>scc[i]:i番目の強連結成分の頂点</returns>
    public List<List<int>> Execute()
    {
        scc = new List<List<int>>();
        use = new bool[g.Length];
        st = new Stack<int>();
        for (var i = 0; i < g.Length; i++)
            if (!use[i])
                dfs1(i);
        use = new bool[g.Length];
        while (st.Any())
        {
            scc.Add(new List<int>());
            Count++;
            dfs2(st.Pop());
            while (st.Any() && use[st.Peek()])
                st.Pop();
        }
        return scc;
    }
    private void dfs1(int index)
    {
        use[index] = true;
        foreach (var e in g[index])
            if (!use[e])
                dfs1(e);
        st.Push(index);
    }
    private void dfs2(int index)
    {
        group[index] = Count - 1;
        use[index] = true;
        scc[scc.Count - 1].Add(index);
        foreach (var e in rev[index])
            if (!use[e])
                dfs2(e);
    }
}
#region Template
public static class Template
{
    static void Main(string[] args)
    {
        Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
        new Solver().Solve(new Scanner());
        Console.Out.Flush();
    }
    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public static bool chmin<T>(ref T a, T b) where T : IComparable<T> { if (a.CompareTo(b) == 1) { a = b; return true; } return false; }
    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public static bool chmax<T>(ref T a, T b) where T : IComparable<T> { if (a.CompareTo(b) == -1) { a = b; return true; } return false; }
    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public static void swap<T>(ref T a, ref T b) { var t = b; b = a; a = t; }
    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public static void swap<T>(this IList<T> A, int i, int j) { var t = A[i]; A[i] = A[j]; A[j] = t; }
    public static T[] Create<T>(int n, Func<T> f) { var rt = new T[n]; for (var i = 0; i < rt.Length; ++i) rt[i] = f(); return rt; }
    public static T[] Create<T>(int n, Func<int, T> f) { var rt = new T[n]; for (var i = 0; i < rt.Length; ++i) rt[i] = f(i); return rt; }
    public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> A) => A.OrderBy(v => Guid.NewGuid());
    public static int CompareTo<T>(this T[] A, T[] B, Comparison<T> cmp = null) { cmp = cmp ?? Comparer<T>.Default.Compare; for (var i = 0; i < Min(A.Length, B.Length); i++) { int c = cmp(A[i], B[i]); if (c > 0) return 1; else if (c < 0) return -1; } if (A.Length == B.Length) return 0; if (A.Length > B.Length) return 1; else return -1; }
    public static int MaxElement<T>(this IList<T> A, Comparison<T> cmp = null) { cmp = cmp ?? Comparer<T>.Default.Compare; T max = A[0]; int rt = 0; for (int i = 1; i < A.Count; i++) if (cmp(max, A[i]) < 0) { max = A[i]; rt = i; } return rt; }
    public static T PopBack<T>(this List<T> A) { var v = A[A.Count - 1]; A.RemoveAt(A.Count - 1); return v; }
    public static void Fail<T>(T s) { Console.WriteLine(s); Console.Out.Close(); Environment.Exit(0); }
}
public class Scanner
{
    public string Str => Console.ReadLine().Trim();
    public int Int => int.Parse(Str);
    public long Long => long.Parse(Str);
    public double Double => double.Parse(Str);
    public int[] ArrInt => Str.Split(' ').Select(int.Parse).ToArray();
    public long[] ArrLong => Str.Split(' ').Select(long.Parse).ToArray();
    public char[][] Grid(int n) => Create(n, () => Str.ToCharArray());
    public int[] ArrInt1D(int n) => Create(n, () => Int);
    public long[] ArrLong1D(int n) => Create(n, () => Long);
    public int[][] ArrInt2D(int n) => Create(n, () => ArrInt);
    public long[][] ArrLong2D(int n) => Create(n, () => ArrLong);
    private Queue<string> q = new Queue<string>();
    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public T Next<T>() { if (q.Count == 0) foreach (var item in Str.Split(' ')) q.Enqueue(item); return (T)Convert.ChangeType(q.Dequeue(), typeof(T)); }
    public void Make<T1>(out T1 v1) => v1 = Next<T1>();
    public void Make<T1, T2>(out T1 v1, out T2 v2) { v1 = Next<T1>(); v2 = Next<T2>(); }
    public void Make<T1, T2, T3>(out T1 v1, out T2 v2, out T3 v3) { Make(out v1, out v2); v3 = Next<T3>(); }
    public void Make<T1, T2, T3, T4>(out T1 v1, out T2 v2, out T3 v3, out T4 v4) { Make(out v1, out v2, out v3); v4 = Next<T4>(); }
    public void Make<T1, T2, T3, T4, T5>(out T1 v1, out T2 v2, out T3 v3, out T4 v4, out T5 v5) { Make(out v1, out v2, out v3, out v4); v5 = Next<T5>(); }
    public void Make<T1, T2, T3, T4, T5, T6>(out T1 v1, out T2 v2, out T3 v3, out T4 v4, out T5 v5, out T6 v6) { Make(out v1, out v2, out v3, out v4, out v5); v6 = Next<T6>(); }
    //public (T1, T2) Make<T1, T2>() { Make(out T1 v1, out T2 v2); return (v1, v2); }
    //public (T1, T2, T3) Make<T1, T2, T3>() { Make(out T1 v1, out T2 v2, out T3 v3); return (v1, v2, v3); }
    //public (T1, T2, T3, T4) Make<T1, T2, T3, T4>() { Make(out T1 v1, out T2 v2, out T3 v3, out T4 v4); return (v1, v2, v3, v4); }
}
public class Pair<T1, T2> : IComparable<Pair<T1, T2>>
{
    public T1 v1;
    public T2 v2;
    public Pair() { }
    public Pair(T1 v1, T2 v2)
    { this.v1 = v1; this.v2 = v2; }

    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public int CompareTo(Pair<T1, T2> p)
    {
        var c = Comparer<T1>.Default.Compare(v1, p.v1);
        if (c == 0)
            c = Comparer<T2>.Default.Compare(v2, p.v2);
        return c;
    }
    public override string ToString() => $"{v1.ToString()} {v2.ToString()}";
    public void Deconstruct(out T1 a, out T2 b) { a = v1; b = v2; }
}

public class Pair<T1, T2, T3> : Pair<T1, T2>, IComparable<Pair<T1, T2, T3>>
{
    public T3 v3;
    public Pair() : base() { }
    public Pair(T1 v1, T2 v2, T3 v3) : base(v1, v2)
    { this.v3 = v3; }

    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public int CompareTo(Pair<T1, T2, T3> p)
    {
        var c = base.CompareTo(p);
        if (c == 0)
            c = Comparer<T3>.Default.Compare(v3, p.v3);
        return c;
    }
    public override string ToString() => $"{base.ToString()} {v3.ToString()}";
    public void Deconstruct(out T1 a, out T2 b, out T3 c) { Deconstruct(out a, out b); c = v3; }
}
#endregion
0