結果

問題 No.1817 Reversed Edges
ユーザー kakel-sankakel-san
提出日時 2023-12-21 00:02:17
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,733 bytes
コンパイル時間 9,699 ms
コンパイル使用メモリ 172,120 KB
実行使用メモリ 238,596 KB
最終ジャッジ日時 2024-09-27 10:18:33
合計ジャッジ時間 17,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
30,844 KB
testcase_01 AC 63 ms
30,976 KB
testcase_02 AC 63 ms
30,976 KB
testcase_03 AC 63 ms
30,720 KB
testcase_04 AC 63 ms
31,100 KB
testcase_05 AC 63 ms
30,716 KB
testcase_06 AC 64 ms
31,072 KB
testcase_07 AC 287 ms
64,284 KB
testcase_08 AC 156 ms
49,792 KB
testcase_09 AC 285 ms
63,056 KB
testcase_10 AC 166 ms
52,992 KB
testcase_11 AC 208 ms
58,240 KB
testcase_12 AC 321 ms
63,944 KB
testcase_13 AC 318 ms
63,948 KB
testcase_14 AC 326 ms
64,068 KB
testcase_15 AC 322 ms
63,948 KB
testcase_16 AC 331 ms
63,940 KB
testcase_17 AC 320 ms
63,944 KB
testcase_18 AC 322 ms
63,944 KB
testcase_19 AC 321 ms
64,160 KB
testcase_20 AC 334 ms
63,936 KB
testcase_21 AC 324 ms
63,816 KB
testcase_22 AC 223 ms
65,148 KB
testcase_23 AC 225 ms
65,156 KB
testcase_24 AC 237 ms
238,596 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var map = NMap(n - 1);
        var tree = new List<Pair>[n];
        for (var i = 0; i < n; ++i) tree[i] = new List<Pair>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(new Pair(edge[1]));
            tree[edge[1]].Add(new Pair(edge[0]));
        }
        var ans = new int[n];
        DFS1(-1, 0, tree, ans);
        DFS2(-1, 0, 0, tree, ans);
        WriteLine(string.Join("\n", ans));
    }
    class Pair
    {
        public int To;
        public int Val;
        public Pair(int to)
        {
            To = to;
        }
    }
    static void DFS1(int prev, int cur, List<Pair>[] tree, int[] ans)
    {
        foreach (var next in tree[cur])
        {
            if (prev == next.To) continue;
            DFS1(cur, next.To, tree, ans);
            next.Val = ans[next.To] + (cur > next.To ? 1 : 0);
            ans[cur] += next.Val;
        }
    }
    static void DFS2(int prev, int cur, int take, List<Pair>[] tree, int[] ans)
    {
        ans[cur] += take;
        if (prev >= 0 && prev < cur) ++ans[cur];
        foreach (var next in tree[cur])
        {
            if (prev == next.To) continue;
            DFS2(cur, next.To, ans[cur] - next.Val, tree, ans);
        }
    }
}
0