結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー kakel-sankakel-san
提出日時 2024-08-08 23:53:07
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,298 bytes
コンパイル時間 9,865 ms
コンパイル使用メモリ 167,168 KB
実行使用メモリ 187,328 KB
最終ジャッジ日時 2024-08-08 23:53:37
合計ジャッジ時間 26,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,336 KB
testcase_01 AC 57 ms
30,336 KB
testcase_02 AC 59 ms
30,592 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 191 ms
60,292 KB
testcase_24 AC 157 ms
58,392 KB
testcase_25 AC 268 ms
65,808 KB
testcase_26 AC 384 ms
67,880 KB
testcase_27 AC 283 ms
63,784 KB
testcase_28 AC 190 ms
61,144 KB
testcase_29 AC 261 ms
63,016 KB
testcase_30 AC 197 ms
61,276 KB
testcase_31 AC 212 ms
60,696 KB
testcase_32 AC 242 ms
60,840 KB
testcase_33 AC 336 ms
66,836 KB
testcase_34 AC 343 ms
68,412 KB
testcase_35 AC 441 ms
72,760 KB
testcase_36 AC 358 ms
69,424 KB
testcase_37 AC 240 ms
60,916 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 344 ms
89,364 KB
testcase_44 AC 322 ms
72,748 KB
testcase_45 AC 265 ms
87,460 KB
testcase_46 AC 84 ms
42,336 KB
testcase_47 AC 61 ms
187,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        ++n;
        var map = NArr(m);
        var tree = new List<(int to, long len, long count)>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<(int to, long len, long count)>();
        var revtree = new List<int>[n];
        for (var i = 0; i < revtree.Length; ++i) revtree[i] = new List<int>();
        var refs = new int[n];
        foreach (var edge in map)
        {
            tree[edge[0]].Add((edge[1], edge[2], edge[3]));
            revtree[edge[1]].Add(edge[0]);
            ++refs[edge[1]];
        }
        var visited = new bool[n];
        var lengths = new long[n];
        var counts = new long[n];
        counts[0] = 1;
        var mod = 1_000_000_007;
        var q = new Queue<int>();
        for (var i = 0; i < n; ++i) if (refs[i] == 0)
        {
            visited[i] = true;
            q.Enqueue(i);
        }
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            foreach (var next in tree[cur])
            {
                counts[next.to] = (counts[next.to] + counts[cur] * next.count % mod) % mod;
                lengths[next.to] = (lengths[next.to] + counts[cur] * next.len % mod * next.count % mod +
                    lengths[cur] * Exp(counts[cur], mod - 2, mod) % mod * next.count % mod) % mod;
                --refs[next.to];
                if (refs[next.to] == 0)
                {
                    visited[next.to] = true;
                    q.Enqueue(next.to);
                }
            }
        }
        var reachable0 = new bool[n];
        DFS(0, tree, reachable0);
        var reachableN = new bool[n];
        DFS(n - 1, revtree, reachableN);
        for (var i = 0; i < n; ++i) if (reachable0[i] && reachableN[i] && !visited[i])
        {
            WriteLine("INF");
            return;
        }
        WriteLine(lengths[^1]);
    }
    static void DFS(int cur, List<(int to, long len, long count)>[] tree, bool[] visited)
    {
        visited[cur] = true;
        foreach (var next in tree[cur])
        {
            if (visited[next.to]) continue;
            DFS(next.to, tree, visited);
        }
    }
    static void DFS(int cur, List<int>[] tree, bool[] visited)
    {
        visited[cur] = true;
        foreach (var next in tree[cur])
        {
            if (visited[next]) continue;
            DFS(next, tree, visited);
        }
    }
    static long Exp(long n, long p, int mod)
    {
        long _n = n % mod;
        var _p = p;
        var result = 1L;
        if ((_p & 1) == 1) result *= _n;
        while (_p > 0)
        {
            _n = _n * _n % mod;
            _p >>= 1;
            if ((_p & 1) == 1) result = result * _n % mod;
        }
        return result;
    }
}
0