結果

問題 No.2914 正閉路検出
ユーザー kakel-sankakel-san
提出日時 2024-12-08 13:41:59
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,391 bytes
コンパイル時間 17,441 ms
コンパイル使用メモリ 166,152 KB
実行使用メモリ 219,024 KB
最終ジャッジ日時 2024-12-08 13:42:37
合計ジャッジ時間 31,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,824 KB
testcase_01 AC 65 ms
31,488 KB
testcase_02 AC 60 ms
30,848 KB
testcase_03 AC 61 ms
30,848 KB
testcase_04 AC 69 ms
31,616 KB
testcase_05 AC 63 ms
30,720 KB
testcase_06 AC 70 ms
31,616 KB
testcase_07 AC 68 ms
31,360 KB
testcase_08 AC 65 ms
31,488 KB
testcase_09 AC 60 ms
30,720 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 61 ms
30,688 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 66 ms
31,488 KB
testcase_17 WA -
testcase_18 AC 67 ms
31,616 KB
testcase_19 AC 93 ms
41,964 KB
testcase_20 AC 164 ms
59,776 KB
testcase_21 AC 88 ms
37,376 KB
testcase_22 AC 194 ms
59,648 KB
testcase_23 AC 125 ms
53,740 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 188 ms
59,616 KB
testcase_28 AC 171 ms
61,296 KB
testcase_29 AC 207 ms
67,584 KB
testcase_30 AC 80 ms
40,416 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 447 ms
92,956 KB
testcase_38 AC 349 ms
87,092 KB
testcase_39 AC 361 ms
77,320 KB
testcase_40 AC 463 ms
91,188 KB
testcase_41 WA -
testcase_42 AC 495 ms
92,084 KB
testcase_43 AC 475 ms
90,936 KB
testcase_44 WA -
testcase_45 AC 487 ms
88,120 KB
testcase_46 AC 462 ms
87,604 KB
testcase_47 AC 475 ms
85,812 KB
testcase_48 AC 328 ms
78,680 KB
testcase_49 AC 454 ms
90,556 KB
testcase_50 AC 462 ms
85,936 KB
testcase_51 AC 166 ms
60,800 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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 #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(m);
        var tree = new List<(int id, int to, long len)>[n];
        for (var i = 0; i < n; ++i) tree[i] = new List<(int id, int to, long len)>();
        for (var i = 0; i < m; ++i)
        {
            var edge = map[i];
            tree[edge[0] - 1].Add((i, edge[1] - 1, edge[2]));
            tree[edge[1] - 1].Add((i, edge[0] - 1, -edge[2]));
        }
        var len = Enumerable.Repeat(INF, n).ToArray();
        len[0] = 0;
        if (!DFS(0, tree, len, new List<int>(), new List<int>()))
        {
            WriteLine(-1);
        }
    }
    static long INF = long.MinValue;
    static bool DFS(int cur, List<(int id, int to, long len)>[] tree, long[] len, List<int> vlist, List<int> elist)
    {
        foreach (var next in tree[cur])
        {
            if (len[next.to] == INF)
            {
                len[next.to] = len[cur] + next.len;
                vlist.Add(cur);
                elist.Add(next.id);
                if (DFS(next.to, tree, len, vlist, elist))
                {
                    return true;
                }
                vlist.RemoveAt(vlist.Count - 1);
                elist.RemoveAt(elist.Count - 1);
            }
            else
            {
                if (len[next.to] == len[cur] + next.len) continue;
                var start = vlist.LastIndexOf(cur);
                var route = elist.Skip(start).ToList();
                route.Insert(0, next.id);
                if (len[next.to] > len[cur] + next.len) route.Reverse();
                WriteLine(route.Count);
                WriteLine(cur + 1);
                WriteLine(string.Join(" ", route.Select(r => r + 1)));
                return true;
            }
        }
        return false;
    }
}
0