結果

問題 No.2325 Skill Tree
ユーザー kakel-sankakel-san
提出日時 2023-10-11 00:01:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 743 ms / 3,000 ms
コード長 2,544 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 116,100 KB
実行使用メモリ 78,776 KB
最終ジャッジ日時 2024-09-13 01:29:38
合計ジャッジ時間 28,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
25,516 KB
testcase_01 AC 39 ms
25,632 KB
testcase_02 AC 38 ms
25,448 KB
testcase_03 AC 38 ms
25,448 KB
testcase_04 AC 39 ms
27,668 KB
testcase_05 AC 39 ms
25,576 KB
testcase_06 AC 38 ms
25,648 KB
testcase_07 AC 250 ms
41,200 KB
testcase_08 AC 241 ms
42,156 KB
testcase_09 AC 306 ms
47,700 KB
testcase_10 AC 352 ms
53,592 KB
testcase_11 AC 355 ms
51,472 KB
testcase_12 AC 683 ms
70,380 KB
testcase_13 AC 669 ms
68,320 KB
testcase_14 AC 679 ms
72,420 KB
testcase_15 AC 671 ms
72,520 KB
testcase_16 AC 668 ms
70,488 KB
testcase_17 AC 644 ms
67,556 KB
testcase_18 AC 663 ms
69,856 KB
testcase_19 AC 653 ms
69,860 KB
testcase_20 AC 631 ms
67,816 KB
testcase_21 AC 639 ms
67,828 KB
testcase_22 AC 648 ms
69,724 KB
testcase_23 AC 635 ms
67,680 KB
testcase_24 AC 629 ms
69,860 KB
testcase_25 AC 630 ms
69,852 KB
testcase_26 AC 632 ms
69,720 KB
testcase_27 AC 701 ms
75,980 KB
testcase_28 AC 715 ms
76,196 KB
testcase_29 AC 719 ms
73,688 KB
testcase_30 AC 725 ms
76,204 KB
testcase_31 AC 719 ms
73,936 KB
testcase_32 AC 692 ms
77,488 KB
testcase_33 AC 712 ms
78,512 KB
testcase_34 AC 712 ms
78,776 KB
testcase_35 AC 717 ms
72,532 KB
testcase_36 AC 725 ms
70,496 KB
testcase_37 AC 743 ms
71,636 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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 n = NN;
        var map = NArr(n - 1);
        var q = NN;
        var query = NArr(q);

        var levels = Enumerable.Repeat(int.MaxValue, n).ToArray();
        levels[0] = 0;
        var tree = new List<(int to, int lv)>[n];
        for (var i = 0; i < n; ++i) tree[i] = new List<(int to, int lv)>();
        for (var i = 0; i < map.Length; ++i)
        {
            tree[map[i][1] - 1].Add((i + 1, map[i][0]));
        }
        DFS(0, tree, levels);

        var dic = new Dictionary<int, int>();
        for (var i = 0; i < levels.Length; ++i)
        {
            if (dic.ContainsKey(levels[i])) ++dic[levels[i]];
            else dic[levels[i]] = 1;
        }
        dic[int.MaxValue] = 0;
        var llist = new List<int>(dic.Keys);
        llist.Sort();
        var clist = new int[llist.Count];
        for (var i = 0; i < llist.Count; ++i)
        {
            clist[i] = dic[llist[i]] + (i > 0 ? clist[i - 1] : 0);
        }
        var ans = new int[q];
        for (var i = 0; i < q; ++i)
        {
            if (query[i][0] == 1)
            {
                var pos = LowerBound(0, query[i][1], llist);
                if (query[i][1] < llist[pos]) --pos;
                ans[i] = clist[pos];
            }
            else
            {
                ans[i] = levels[query[i][1] - 1];
            }
        }
        WriteLine(string.Join("\n", ans.Select(ai => ai == int.MaxValue ? -1 : ai)));
    }
    static void DFS(int cur, List<(int to, int lv)>[] tree, int[] levels)
    {
        foreach (var next in tree[cur])
        {
            levels[next.to] = Math.Max(levels[cur], next.lv);
            DFS(next.to, tree, levels);
        }
    }
    static int LowerBound(int left, int min, List<int> list)
    {
        if (list[left] >= min) return left;
        var ng = left;
        var ok = list.Count;
        while (ok - ng > 1)
        {
            var center = (ng + ok) / 2;
            if (list[center] < min) ng = center;
            else ok = center;
        }
        return ok;
    }
}
0