結果

問題 No.2914 正閉路検出
ユーザー tobisatistobisatis
提出日時 2024-10-04 22:39:23
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 3,642 bytes
コンパイル時間 7,187 ms
コンパイル使用メモリ 166,996 KB
実行使用メモリ 227,232 KB
最終ジャッジ日時 2024-10-04 22:39:51
合計ジャッジ時間 20,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,208 KB
testcase_01 AC 53 ms
30,308 KB
testcase_02 AC 54 ms
30,592 KB
testcase_03 AC 55 ms
30,336 KB
testcase_04 AC 56 ms
30,464 KB
testcase_05 AC 68 ms
30,464 KB
testcase_06 AC 53 ms
30,208 KB
testcase_07 AC 54 ms
30,720 KB
testcase_08 AC 56 ms
30,456 KB
testcase_09 AC 53 ms
30,208 KB
testcase_10 AC 53 ms
30,592 KB
testcase_11 AC 58 ms
30,464 KB
testcase_12 AC 57 ms
30,336 KB
testcase_13 AC 57 ms
30,464 KB
testcase_14 AC 52 ms
30,336 KB
testcase_15 AC 53 ms
30,336 KB
testcase_16 AC 53 ms
30,336 KB
testcase_17 AC 52 ms
30,208 KB
testcase_18 AC 54 ms
30,592 KB
testcase_19 AC 100 ms
44,928 KB
testcase_20 AC 149 ms
54,144 KB
testcase_21 AC 87 ms
39,168 KB
testcase_22 AC 142 ms
61,160 KB
testcase_23 AC 122 ms
52,096 KB
testcase_24 AC 139 ms
61,416 KB
testcase_25 AC 61 ms
32,896 KB
testcase_26 AC 80 ms
37,888 KB
testcase_27 AC 166 ms
61,608 KB
testcase_28 AC 215 ms
63,736 KB
testcase_29 AC 261 ms
78,588 KB
testcase_30 AC 108 ms
48,768 KB
testcase_31 AC 179 ms
61,732 KB
testcase_32 AC 188 ms
63,740 KB
testcase_33 AC 101 ms
48,760 KB
testcase_34 AC 250 ms
75,008 KB
testcase_35 AC 243 ms
78,468 KB
testcase_36 AC 255 ms
79,752 KB
testcase_37 AC 397 ms
104,536 KB
testcase_38 AC 238 ms
95,748 KB
testcase_39 AC 321 ms
90,624 KB
testcase_40 AC 429 ms
103,216 KB
testcase_41 AC 414 ms
96,508 KB
testcase_42 AC 426 ms
103,996 KB
testcase_43 AC 454 ms
102,920 KB
testcase_44 AC 323 ms
89,740 KB
testcase_45 AC 434 ms
101,756 KB
testcase_46 AC 453 ms
101,168 KB
testcase_47 AC 422 ms
99,616 KB
testcase_48 AC 392 ms
93,908 KB
testcase_49 AC 468 ms
102,576 KB
testcase_50 AC 407 ms
100,316 KB
testcase_51 AC 186 ms
70,536 KB
testcase_52 AC 203 ms
69,128 KB
testcase_53 AC 158 ms
68,868 KB
testcase_54 AC 161 ms
227,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (84 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 Dictionary<int, (int, int)>());
        for (var i = 0; i < m; i++)
        {
            var u = Int() - 1;
            var v = Int() - 1;
            var w = Int();
            if (adjz[u].TryGetValue(v, out var p))
            {
                var (pw, pj) = p;
                if (pw == w) continue;
                Out(2);
                if (w > pw)
                {
                    Out(v + 1);
                }
                else
                {
                    Out(u + 1);
                }
                Out(pj + " " + (i + 1));
                return null;
            }
            adjz[u][v] = (w, i + 1);
            adjz[v][u] = (-w, i + 1);
        }
        var dz = new long[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, value) in adjz[v])
            {
                var (w, j) = value;
                if (j == prev) continue;
                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;
                    }
                    continue;
                }
                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