結果

問題 No.2914 正閉路検出
ユーザー tobisatistobisatis
提出日時 2024-10-04 22:24:37
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,113 bytes
コンパイル時間 9,767 ms
コンパイル使用メモリ 165,740 KB
実行使用メモリ 220,600 KB
最終ジャッジ日時 2024-10-04 22:24:59
合計ジャッジ時間 19,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,464 KB
testcase_01 AC 51 ms
30,720 KB
testcase_02 AC 51 ms
30,464 KB
testcase_03 AC 50 ms
30,464 KB
testcase_04 AC 53 ms
30,460 KB
testcase_05 AC 49 ms
30,592 KB
testcase_06 AC 52 ms
30,720 KB
testcase_07 AC 51 ms
30,684 KB
testcase_08 AC 51 ms
30,464 KB
testcase_09 WA -
testcase_10 AC 55 ms
30,460 KB
testcase_11 AC 51 ms
30,464 KB
testcase_12 AC 54 ms
30,720 KB
testcase_13 AC 52 ms
30,336 KB
testcase_14 AC 53 ms
30,576 KB
testcase_15 AC 51 ms
30,336 KB
testcase_16 AC 50 ms
30,708 KB
testcase_17 AC 51 ms
30,708 KB
testcase_18 AC 51 ms
30,720 KB
testcase_19 AC 85 ms
41,676 KB
testcase_20 AC 99 ms
52,224 KB
testcase_21 AC 78 ms
38,776 KB
testcase_22 AC 108 ms
55,680 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 93 ms
43,008 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 91 ms
42,752 KB
testcase_34 AC 193 ms
67,028 KB
testcase_35 AC 200 ms
67,004 KB
testcase_36 AC 178 ms
64,964 KB
testcase_37 AC 177 ms
83,796 KB
testcase_38 AC 168 ms
82,120 KB
testcase_39 AC 188 ms
73,656 KB
testcase_40 AC 209 ms
82,132 KB
testcase_41 AC 198 ms
76,492 KB
testcase_42 AC 205 ms
82,892 KB
testcase_43 AC 204 ms
82,008 KB
testcase_44 AC 190 ms
73,292 KB
testcase_45 AC 208 ms
80,604 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 193 ms
74,332 KB
testcase_49 AC 206 ms
81,096 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (87 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var m = Int();
        var adjz = n.Repeat(() => new List<(int, int, int)>());
        for (var i = 0; i < m; i++)
        {
            var u = Int() - 1;
            var v = Int() - 1;
            var w = Int();
            adjz[u].Add((v, w, i + 1));
            adjz[v].Add((u, -w, i + 1));
        }
        var dz = new int[n];
        var last = n.Repeat(() => -1);
        var lj = n.Repeat(() => -1);
        var ans = new List<int>();
        void S(int v, int prev)
        {
            if (ans.Count > 0) return;
            foreach (var (next, w, j) in adjz[v]) if (j != prev)
            {
                var nd = dz[v] + w;
                if (last[next] != -1)
                {
                    if (dz[next] != nd && ans.Count == 0)
                    {
                        var k = v;
                        ans.Add(j);
                        while (k != next && k >= 0)
                        {
                            ans.Add(lj[k]);
                            k = last[k];
                        }
                        if (dz[next] < nd) ans.Reverse();
                        Out(ans.Count);
                        Out(next + 1);
                        Out(ans, " ");
                    }
                    return;
                }
                dz[next] = nd;
                last[next] = v;
                lj[next] = j;
                S(next, j);
            }
        }
        for (var start = 0; start < n; start++)
        {
            if (last[start] != -1) continue;
            dz[start] = 0;
            last[start] = -2;
            S(start, -1);
        }
        if (ans.Count == 0) return -1;
        return null;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Trim().Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0