結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー kakel-sankakel-san
提出日時 2024-08-08 23:54:44
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 402 ms / 2,500 ms
コード長 3,259 bytes
コンパイル時間 7,545 ms
コンパイル使用メモリ 169,452 KB
実行使用メモリ 188,012 KB
最終ジャッジ日時 2024-08-08 23:55:06
合計ジャッジ時間 20,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,464 KB
testcase_01 AC 56 ms
30,456 KB
testcase_02 AC 55 ms
30,680 KB
testcase_03 AC 56 ms
30,848 KB
testcase_04 AC 57 ms
30,720 KB
testcase_05 AC 56 ms
30,592 KB
testcase_06 AC 55 ms
30,720 KB
testcase_07 AC 59 ms
30,976 KB
testcase_08 AC 73 ms
36,864 KB
testcase_09 AC 61 ms
33,280 KB
testcase_10 AC 81 ms
36,480 KB
testcase_11 AC 71 ms
36,224 KB
testcase_12 AC 73 ms
36,864 KB
testcase_13 AC 276 ms
63,688 KB
testcase_14 AC 307 ms
64,484 KB
testcase_15 AC 335 ms
66,240 KB
testcase_16 AC 257 ms
62,180 KB
testcase_17 AC 169 ms
61,220 KB
testcase_18 AC 375 ms
76,208 KB
testcase_19 AC 375 ms
76,420 KB
testcase_20 AC 402 ms
76,464 KB
testcase_21 AC 370 ms
76,336 KB
testcase_22 AC 375 ms
76,464 KB
testcase_23 AC 174 ms
60,232 KB
testcase_24 AC 143 ms
58,476 KB
testcase_25 AC 229 ms
65,872 KB
testcase_26 AC 307 ms
68,272 KB
testcase_27 AC 247 ms
64,036 KB
testcase_28 AC 187 ms
61,008 KB
testcase_29 AC 241 ms
63,272 KB
testcase_30 AC 173 ms
61,532 KB
testcase_31 AC 151 ms
60,932 KB
testcase_32 AC 211 ms
61,096 KB
testcase_33 AC 285 ms
66,884 KB
testcase_34 AC 299 ms
68,396 KB
testcase_35 AC 321 ms
72,752 KB
testcase_36 AC 302 ms
69,560 KB
testcase_37 AC 215 ms
60,788 KB
testcase_38 AC 314 ms
68,420 KB
testcase_39 AC 290 ms
68,420 KB
testcase_40 AC 291 ms
68,420 KB
testcase_41 AC 293 ms
68,300 KB
testcase_42 AC 323 ms
68,560 KB
testcase_43 AC 243 ms
89,052 KB
testcase_44 AC 194 ms
72,564 KB
testcase_45 AC 238 ms
87,484 KB
testcase_46 AC 79 ms
42,524 KB
testcase_47 AC 56 ms
188,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (90 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] * 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