Submission #1307967


Source Code Expand

using System;
using System.Linq;
using System.Collections.Generic;
using Debug = System.Diagnostics.Debug;
using SB = System.Text.StringBuilder;
using Number = System.Int64;
//using System.Numerics;
using static System.Math;
//using static MathEx;
using P = System.Collections.Generic.KeyValuePair<int, int>;
namespace Program
{
    public class Solver
    {
        public void Solve()
        {
            var n = ri;
            var G = Enumerate(n, x => new List<int>());
            for (int i = 0; i < n - 1; i++)
            {
                var f = ri - 1;
                var t = ri - 1;
                G[f].Add(t);
                G[t].Add(f);
            }
            var s = rs;
            long ans = f(n, G, s);
            Debug.WriteLine("go");
            for (int i = 0; i < n; i++)
            {
                ans += Max(0, dp[i].secd - dp[i].minx + 1);
                Debug.WriteLine("{0} center: {1} ", i, Max(0, dp[i].secd - dp[i].minx + 1));
            }
            IO.Printer.Out.WriteLine(ans);
        }
        DP[] dp;
        int f(int n, List<int>[] G, string s)
        {
            dp = new DP[n];
            DP.New = () =>
            {
                var ret = new DP();
                ret.maxd = ret.secd = -100000;
                ret.minx = 1000000000;
                return ret;
            };
            DP.Merge = (l, r, rst) =>
            {
                var ret = new DP();
                ret.maxd = l.maxd;
                ret.secd = l.secd;
                if (ret.maxd < r.maxd) { ret.secd = ret.maxd; ret.maxd = r.maxd; }
                else if (ret.secd < r.maxd) ret.secd = r.maxd;
                if (r.maxd >= 0)
                    ret.minx = Min(l.minx, r.maxd);
                return ret;
            };
            DP.Root = val =>
            {
                var ret = new DP();
                ret.maxd = Max(0, val.maxd + 1);
                ret.secd = Max(0, val.secd + 1);
                ret.minx = val.minx + 1;
                return ret;
            };
            Func<int, int, DP> dfs = null;
            dfs = (prev, cur) =>
            {
                var ret = DP.New();
                foreach (var to in G[cur])
                    if (prev != to) ret += dfs(cur, to);
                dp[cur] = !ret;
                if (s[cur] == '1') dp[cur].minx = 0;
                return dp[cur];
            };
            dfs(-1, 0);
            var ans = 0;
            dfs = (prev, cur) =>
            {

                var ret = DP.New();
                var k = G[cur].Count;
                var rdp = new DP[k + 1];
                rdp[k] = DP.New();
                for (int i = k - 1; i >= 0; i--)
                    rdp[i] = rdp[i + 1] + dp[G[cur][i]];
                for (int i = 0; i < k; i++)
                {
                    var to = G[cur][i];
                    var pre = dp[to];
                    dp[cur] = !(ret * rdp[i + 1]);
                    if (s[cur] == '1') dp[cur].minx = 0;
                    ret += dp[to];
                    if (prev != to)
                    {
                        var min = Min(dp[cur].maxd, dp[to].maxd);
                        var ok = false;
                        if (dp[cur].maxd == min && dp[cur].minx < min + 1) ok = true;
                        if (dp[to].maxd == min && dp[to].minx < min + 1) ok = true;
                        if (ok)
                        {
                            Debug.WriteLine("{0} {1}", cur, to);
                            ans++;
                        }
                        dfs(cur, to);
                    }
                }
                dp[cur] = !ret;
                if (s[cur] == '1') dp[cur].minx = 0;
                return dp[cur];
            };
            dfs(-1, 0);
            return ans;
        }
        //*
        int ri => sc.Integer();
        long rl => sc.Long();
        double rd => sc.Double();
        string rs => sc.Scan();
        char rc => sc.Char();

        [System.Diagnostics.Conditional("DEBUG")]
        void put(params object[] a) => Debug.WriteLine(string.Join(" ", a));
        //*/
        public IO.StreamScanner sc = new IO.StreamScanner(Console.OpenStandardInput());
        static T[] Enumerate<T>(int n, Func<int, T> f) { var a = new T[n]; for (int i = 0; i < n; ++i) a[i] = f(i); return a; }
        static public void Swap<T>(ref T a, ref T b) { var tmp = a; a = b; b = tmp; }
    }
}

#region main
static class Ex
{
    static public string AsString(this IEnumerable<char> ie) { return new string(System.Linq.Enumerable.ToArray(ie)); }
    static public string AsJoinedString<T>(this IEnumerable<T> ie, string st = " ") { return string.Join(st, ie); }
    static public void Main()
    {
        var solver = new Program.Solver();
        solver.Solve();
        Program.IO.Printer.Out.Flush();
    }
}
#endregion
#region Ex
namespace Program.IO
{
    using System.IO;
    using System.Text;
    using System.Globalization;
    public class Printer: StreamWriter
    {
        static Printer() { Out = new Printer(Console.OpenStandardOutput()) { AutoFlush = false }; }
        public static Printer Out { get; set; }
        public override IFormatProvider FormatProvider { get { return CultureInfo.InvariantCulture; } }
        public Printer(System.IO.Stream stream) : base(stream, new UTF8Encoding(false, true)) { }
        public Printer(System.IO.Stream stream, Encoding encoding) : base(stream, encoding) { }
        public void Write<T>(string format, T[] source) { base.Write(format, source.OfType<object>().ToArray()); }
        public void WriteLine<T>(string format, T[] source) { base.WriteLine(format, source.OfType<object>().ToArray()); }
    }
    public class StreamScanner
    {
        public StreamScanner(Stream stream) { str = stream; }
        public readonly Stream str;
        private readonly byte[] buf = new byte[1024];
        private int len, ptr;
        public bool isEof = false;
        public bool IsEndOfStream { get { return isEof; } }
        private byte read()
        {
            if (isEof) return 0;
            if (ptr >= len) { ptr = 0; if ((len = str.Read(buf, 0, 1024)) <= 0) { isEof = true; return 0; } }
            return buf[ptr++];
        }
        public char Char() { byte b = 0; do b = read(); while ((b < 33 || 126 < b) && !isEof); return (char)b; }

        public string Scan()
        {
            var sb = new StringBuilder();
            for (var b = Char(); b >= 33 && b <= 126; b = (char)read())
                sb.Append(b);
            return sb.ToString();
        }
        public string ScanLine()
        {
            var sb = new StringBuilder();
            for (var b = Char(); b != '\n'; b = (char)read())
                if (b == 0) break;
                else if (b != '\r') sb.Append(b);
            return sb.ToString();
        }
        public long Long()
        {
            if (isEof) return long.MinValue;
            long ret = 0; byte b = 0; var ng = false;
            do b = read();
            while (b != 0 && b != '-' && (b < '0' || '9' < b));
            if (b == 0) return long.MinValue;
            if (b == '-') { ng = true; b = read(); }
            for (; true; b = read())
            {
                if (b < '0' || '9' < b)
                    return ng ? -ret : ret;
                else ret = ret * 10 + b - '0';
            }
        }
        public int Integer() { return (isEof) ? int.MinValue : (int)Long(); }
        public double Double() { var s = Scan(); return s != "" ? double.Parse(s, CultureInfo.InvariantCulture) : double.NaN; }
        private T[] enumerate<T>(int n, Func<T> f)
        {
            var a = new T[n];
            for (int i = 0; i < n; ++i) a[i] = f();
            return a;
        }

        public char[] Char(int n) { return enumerate(n, Char); }
        public string[] Scan(int n) { return enumerate(n, Scan); }
        public double[] Double(int n) { return enumerate(n, Double); }
        public int[] Integer(int n) { return enumerate(n, Integer); }
        public long[] Long(int n) { return enumerate(n, Long); }
    }
}
#endregion

public struct DP
{
    public int maxd;
    public int secd;
    public int minx;
    //単位元を入れる
    public static Func<DP> New;
    /// <summary>
    /// 2つの森をマージする.trueのとき,右は木
    /// </summary>
    public static Func<DP, DP, bool, DP> Merge;
    /// <summary>
    /// 根をつける
    /// </summary>
    public static Func<DP, DP> Root;

    public static DP operator +(DP l, DP r) { return Merge(l, r, true); }
    public static DP operator *(DP l, DP r) { return Merge(l, r, false); }
    public static DP operator !(DP x) { return Root(x); }
}

Submission Info

Submission Time
Task F - Black Radius
User camypaper
Language C# (Mono 4.6.2.0)
Score 0
Code Size 8981 Byte
Status WA
Exec Time 2113 ms
Memory 95240 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 0 / 1300 0 / 600
Status
AC × 3
AC × 24
TLE × 7
AC × 30
WA × 29
TLE × 22
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
Subtask 0_01.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt, 1_24.txt, 1_25.txt, 1_26.txt, 1_27.txt, 1_28.txt, 1_29.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt, 1_24.txt, 1_25.txt, 1_26.txt, 1_27.txt, 1_28.txt, 1_29.txt, 2_00.txt, 2_01.txt, 2_02.txt, 2_03.txt, 2_04.txt, 2_05.txt, 2_06.txt, 2_07.txt, 2_08.txt, 2_09.txt, 2_10.txt, 2_11.txt, 2_12.txt, 2_13.txt, 2_14.txt, 2_15.txt, 2_16.txt, 2_17.txt, 2_18.txt, 2_19.txt, 2_20.txt, 2_21.txt, 2_22.txt, 2_23.txt, 2_24.txt, 2_25.txt, 2_26.txt, 2_27.txt, 2_28.txt, 2_29.txt, 2_30.txt, 2_31.txt, 2_32.txt, 2_33.txt, 2_34.txt, 2_35.txt, 2_36.txt, 2_37.txt, 2_38.txt, 2_39.txt, 2_40.txt, 2_41.txt, 2_42.txt, 2_43.txt, 2_44.txt, 2_45.txt, 2_46.txt, 2_47.txt
Case Name Status Exec Time Memory
0_00.txt AC 25 ms 13268 KB
0_01.txt AC 25 ms 11220 KB
0_02.txt AC 24 ms 9172 KB
1_00.txt AC 25 ms 11220 KB
1_01.txt TLE 2113 ms 93576 KB
1_02.txt TLE 2112 ms 76124 KB
1_03.txt AC 369 ms 38112 KB
1_04.txt AC 311 ms 41424 KB
1_05.txt AC 303 ms 40660 KB
1_06.txt AC 329 ms 38388 KB
1_07.txt AC 332 ms 38516 KB
1_08.txt AC 500 ms 50048 KB
1_09.txt AC 1730 ms 85176 KB
1_10.txt TLE 2111 ms 60372 KB
1_11.txt TLE 2113 ms 90952 KB
1_12.txt AC 700 ms 54492 KB
1_13.txt TLE 2111 ms 66460 KB
1_14.txt AC 1373 ms 54316 KB
1_15.txt AC 350 ms 46456 KB
1_16.txt AC 1221 ms 59672 KB
1_17.txt TLE 2111 ms 67484 KB
1_18.txt AC 326 ms 37952 KB
1_19.txt AC 340 ms 36024 KB
1_20.txt AC 341 ms 36260 KB
1_21.txt AC 386 ms 47088 KB
1_22.txt AC 325 ms 39056 KB
1_23.txt AC 361 ms 41096 KB
1_24.txt AC 508 ms 44224 KB
1_25.txt AC 334 ms 51456 KB
1_26.txt AC 317 ms 40620 KB
1_27.txt AC 311 ms 39556 KB
1_28.txt AC 341 ms 42104 KB
1_29.txt TLE 2104 ms 58844 KB
2_00.txt AC 25 ms 11220 KB
2_01.txt TLE 2113 ms 91356 KB
2_02.txt TLE 2112 ms 80860 KB
2_03.txt TLE 2112 ms 84316 KB
2_04.txt TLE 2111 ms 69468 KB
2_05.txt TLE 2111 ms 69464 KB
2_06.txt TLE 2111 ms 74332 KB
2_07.txt WA 354 ms 42100 KB
2_08.txt WA 371 ms 38004 KB
2_09.txt WA 352 ms 37972 KB
2_10.txt WA 321 ms 39376 KB
2_11.txt WA 342 ms 43356 KB
2_12.txt WA 310 ms 39376 KB
2_13.txt AC 310 ms 38612 KB
2_14.txt AC 305 ms 42828 KB
2_15.txt AC 307 ms 40660 KB
2_16.txt WA 361 ms 42484 KB
2_17.txt WA 330 ms 38388 KB
2_18.txt WA 333 ms 36340 KB
2_19.txt WA 335 ms 36584 KB
2_20.txt WA 343 ms 36572 KB
2_21.txt WA 364 ms 38516 KB
2_22.txt WA 510 ms 42396 KB
2_23.txt WA 554 ms 56572 KB
2_24.txt WA 561 ms 51308 KB
2_25.txt TLE 2111 ms 70540 KB
2_26.txt WA 1848 ms 78420 KB
2_27.txt TLE 2111 ms 66188 KB
2_28.txt TLE 2111 ms 65676 KB
2_29.txt TLE 2112 ms 82680 KB
2_30.txt WA 1820 ms 95240 KB
2_31.txt TLE 2111 ms 64580 KB
2_32.txt WA 349 ms 44784 KB
2_33.txt WA 526 ms 55840 KB
2_34.txt TLE 2111 ms 61764 KB
2_35.txt TLE 2111 ms 69296 KB
2_36.txt WA 341 ms 37696 KB
2_37.txt WA 362 ms 40108 KB
2_38.txt WA 572 ms 51788 KB
2_39.txt WA 335 ms 39044 KB
2_40.txt WA 312 ms 37392 KB
2_41.txt WA 326 ms 36660 KB
2_42.txt WA 311 ms 36952 KB
2_43.txt TLE 2111 ms 69652 KB
2_44.txt WA 312 ms 41404 KB
2_45.txt WA 341 ms 42228 KB
2_46.txt WA 311 ms 41596 KB
2_47.txt TLE 2110 ms 55744 KB