結果

問題 No.439 チワワのなる木
ユーザー eitahoeitaho
提出日時 2016-10-29 00:18:05
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 5,157 bytes
コンパイル時間 1,113 ms
コンパイル使用メモリ 119,752 KB
実行使用メモリ 73,080 KB
最終ジャッジ日時 2024-05-03 08:26:22
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,408 KB
testcase_01 AC 32 ms
25,132 KB
testcase_02 AC 32 ms
25,388 KB
testcase_03 AC 30 ms
25,264 KB
testcase_04 AC 29 ms
25,496 KB
testcase_05 AC 28 ms
23,476 KB
testcase_06 AC 28 ms
25,524 KB
testcase_07 AC 29 ms
27,300 KB
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 WA -
testcase_24 AC 206 ms
70,376 KB
testcase_25 AC 195 ms
51,684 KB
testcase_26 WA -
testcase_27 AC 180 ms
73,080 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 System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Diagnostics;
using Enu = System.Linq.Enumerable;
using System.Numerics;

public class Program
{
    long ans = 0;
    int[] Val;
    List<int>[] G;

    public void Solve()
    {
        int N = Reader.Int();
        Val = Reader.String().Select(c => c == 'c' ? 0 : 1).ToArray();
        G = Enu.Range(0, N).Select(i => new List<int>()).ToArray();
        for (int i = 0; i < N - 1; i++)
        {
            int a = Reader.Int() - 1, b = Reader.Int() - 1;
            G[a].Add(b);
            G[b].Add(a);
        }
        var who = new List<int>();
        var vals = new List<int>();
        var last = new int[N];
        Rec(0, -1, G, Val, who, vals, last);
        var As = new BinaryIndexedTree(N * 2);
        var Bs = new BinaryIndexedTree(N * 2);
        long totalA = vals.Count(c => c == 0);
        long totalB = N - totalA;

        for (int i = 0; i < vals.Count; i++)
            if (vals[i] == 0) As.Add(i, 1);
            else if (vals[i] == 1) Bs.Add(i, 1);

        for (int i = 0; i < vals.Count; i++)
            if (vals[i] == 1)
            {
                int R = last[who[i]];
                long inA = As.Sum(i + 1, R);
                long outA = totalA - inA;
                long inB = Bs.Sum(i + 1, R);
                long outB = totalB - 1 - inB;
                ans += inA * outB;
                ans += inB * outA;
            }

        Console.WriteLine(ans);
        Console.ReadLine();
    }

    void Rec(int a, int prev, List<int>[] G, int[] Val, List<int> who, List<int> vals, int[] last)
    {
        who.Add(a);
        vals.Add(Val[a]);
        foreach (int b in G[a])
            if (b != prev)
                Rec(b, a, G, Val, who, vals, last);
        last[a] = who.Count;
        who.Add(a);
        vals.Add(~Val[a]);
    }

    class BinaryIndexedTree
    {
        private readonly int N;
        private readonly long[] A;

        public BinaryIndexedTree(int N)
        {
            this.N = N + 1;
            A = new long[N + 2];
        }
        public void Add(int i, long val)
        {
            if (i < 0) return;
            for (++i; i <= N; i += i & -i) A[i] += val;
        }
        public void Update(int i, long val)
        {
            Add(i, val - (Sum(i) - Sum(i - 1)));
        }
        public long Sum(int i) // [0, i]
        {
            if (i < 0) return 0;
            long sum = 0;
            for (++i; i > 0; i &= i - 1) sum += A[i];
            return sum;
        }
        public long Sum(int L, int R) // [L, R)
        {
            return Sum(R - 1) - Sum(L - 1);
        }
        public int LowerBound(long val, int L = 0, int R = -1)
        {
            if (R == -1) R = N;
            L--;
            while (R - L > 1)
            {
                int mid = L + R >> 1;
                if (Sum(mid) >= val) R = mid;
                else L = mid;
            }
            return R;
        }
        public int UpperBound(long val, int L = 0, int R = -1)
        {
            if (R == -1) R = N;
            L--;
            while (R - L > 1)
            {
                int mid = L + R >> 1;
                if (Sum(mid) > val) R = mid;
                else L = mid;
            }
            return R;
        }
    }
}


class Entry { static void Main() { new Program().Solve(); } }
class Reader
{
    static TextReader reader = Console.In;
    static readonly char[] separator = { ' ' };
    static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries;
    static string[] A = new string[0];
    static int i;
    static void Init() { A = new string[0]; }
    public static void Set(TextReader r) { reader = r; Init(); }
    public static void Set(string file) { reader = new StreamReader(file); Init(); }
    public static bool HasNext() { return CheckNext(); }
    public static string String() { return Next(); }
    public static int Int() { return int.Parse(Next()); }
    public static long Long() { return long.Parse(Next()); }
    public static double Double() { return double.Parse(Next()); }
    public static int[] IntLine() { return Array.ConvertAll(Split(Line()), int.Parse); }
    public static int[] IntArray(int N) { return Range(N, Int); }
    public static int[][] IntTable(int H) { return Range(H, IntLine); }
    public static string[] StringArray(int N) { return Range(N, Next); }
    public static string[][] StringTable(int N) { return Range(N, () => Split(Line())); }
    public static string Line() { return reader.ReadLine().Trim(); }
    static string[] Split(string s) { return s.Split(separator, op); }
    static T[] Range<T>(int N, Func<T> f) { var r = new T[N]; for (int i = 0; i < N; r[i++] = f()) ; return r; }
    static string Next() { CheckNext(); return A[i++]; }
    static bool CheckNext()
    {
        if (i < A.Length) return true;
        string line = reader.ReadLine();
        if (line == null) return false;
        if (line == "") return CheckNext();
        A = Split(line);
        i = 0;
        return true;
    }
}
0