結果

問題 No.2914 正閉路検出
ユーザー kakel-sankakel-san
提出日時 2024-12-08 14:19:23
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,516 bytes
コンパイル時間 7,710 ms
コンパイル使用メモリ 165,712 KB
実行使用メモリ 216,296 KB
最終ジャッジ日時 2024-12-08 14:19:50
合計ジャッジ時間 22,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,848 KB
testcase_01 AC 66 ms
31,616 KB
testcase_02 AC 63 ms
30,720 KB
testcase_03 AC 59 ms
30,848 KB
testcase_04 AC 65 ms
31,480 KB
testcase_05 AC 58 ms
30,720 KB
testcase_06 AC 64 ms
31,616 KB
testcase_07 AC 64 ms
31,488 KB
testcase_08 AC 67 ms
31,456 KB
testcase_09 AC 60 ms
30,592 KB
testcase_10 AC 65 ms
31,744 KB
testcase_11 AC 67 ms
31,360 KB
testcase_12 AC 60 ms
30,848 KB
testcase_13 WA -
testcase_14 AC 67 ms
31,616 KB
testcase_15 AC 70 ms
31,872 KB
testcase_16 AC 66 ms
31,744 KB
testcase_17 AC 65 ms
31,360 KB
testcase_18 AC 67 ms
31,616 KB
testcase_19 AC 91 ms
41,984 KB
testcase_20 AC 143 ms
59,496 KB
testcase_21 AC 78 ms
37,504 KB
testcase_22 AC 150 ms
59,520 KB
testcase_23 AC 118 ms
54,016 KB
testcase_24 AC 184 ms
59,964 KB
testcase_25 AC 71 ms
33,788 KB
testcase_26 AC 80 ms
37,100 KB
testcase_27 AC 163 ms
59,776 KB
testcase_28 AC 172 ms
62,356 KB
testcase_29 AC 221 ms
70,912 KB
testcase_30 AC 78 ms
40,428 KB
testcase_31 AC 167 ms
60,352 KB
testcase_32 AC 194 ms
63,240 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 205 ms
71,296 KB
testcase_36 AC 332 ms
75,932 KB
testcase_37 AC 396 ms
109,952 KB
testcase_38 AC 373 ms
102,928 KB
testcase_39 AC 388 ms
87,936 KB
testcase_40 AC 405 ms
107,012 KB
testcase_41 AC 400 ms
94,252 KB
testcase_42 AC 438 ms
108,936 KB
testcase_43 AC 415 ms
107,024 KB
testcase_44 AC 375 ms
87,000 KB
testcase_45 AC 419 ms
103,944 KB
testcase_46 AC 414 ms
102,544 KB
testcase_47 AC 448 ms
100,244 KB
testcase_48 AC 379 ms
89,692 KB
testcase_49 AC 421 ms
106,116 KB
testcase_50 AC 416 ms
100,240 KB
testcase_51 AC 179 ms
60,928 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (91 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 ans = Route(n, m, map);
        WriteLine(ans);
    }
    static string Route(int n, int m, int[][] map)
    {
        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;
        var ans = "";
        if (DFS(0, tree, len, new List<int>(), new List<int>(), ref ans)) return ans;
        else return "-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, ref string ans)
    {
        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, ref ans))
                {
                    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(next.to);
                var route = elist.Skip(start).ToList();
                route.Insert(0, next.id);
                if (len[next.to] > len[cur] + next.len) route.Reverse();
                ans = $"{route.Count}\n{cur + 1}\n{string.Join(" ", route.Select(r => r + 1))}";
                return true;
            }
        }
        return false;
    }
}
0