結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2016-11-18 22:59:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 423 ms / 5,000 ms
コード長 11,123 bytes
コンパイル時間 1,316 ms
コンパイル使用メモリ 117,280 KB
実行使用メモリ 49,964 KB
最終ジャッジ日時 2023-10-22 08:33:53
合計ジャッジ時間 13,557 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,384 KB
testcase_01 AC 32 ms
25,448 KB
testcase_02 AC 31 ms
25,296 KB
testcase_03 AC 34 ms
25,464 KB
testcase_04 AC 35 ms
25,464 KB
testcase_05 AC 35 ms
25,468 KB
testcase_06 AC 34 ms
25,464 KB
testcase_07 AC 34 ms
25,460 KB
testcase_08 AC 35 ms
25,460 KB
testcase_09 AC 34 ms
25,464 KB
testcase_10 AC 33 ms
25,460 KB
testcase_11 AC 34 ms
25,460 KB
testcase_12 AC 212 ms
35,056 KB
testcase_13 AC 320 ms
40,744 KB
testcase_14 AC 292 ms
40,820 KB
testcase_15 AC 338 ms
40,784 KB
testcase_16 AC 307 ms
40,896 KB
testcase_17 AC 310 ms
40,832 KB
testcase_18 AC 212 ms
35,004 KB
testcase_19 AC 283 ms
40,848 KB
testcase_20 AC 285 ms
40,904 KB
testcase_21 AC 331 ms
40,836 KB
testcase_22 AC 323 ms
40,756 KB
testcase_23 AC 208 ms
35,020 KB
testcase_24 AC 320 ms
40,816 KB
testcase_25 AC 193 ms
34,736 KB
testcase_26 AC 175 ms
34,740 KB
testcase_27 AC 317 ms
40,860 KB
testcase_28 AC 354 ms
40,808 KB
testcase_29 AC 317 ms
40,892 KB
testcase_30 AC 336 ms
40,776 KB
testcase_31 AC 333 ms
40,604 KB
testcase_32 AC 301 ms
40,796 KB
testcase_33 AC 316 ms
40,760 KB
testcase_34 AC 196 ms
34,792 KB
testcase_35 AC 383 ms
40,568 KB
testcase_36 AC 191 ms
34,772 KB
testcase_37 AC 423 ms
49,964 KB
testcase_38 AC 275 ms
45,732 KB
testcase_39 AC 244 ms
45,732 KB
testcase_40 AC 253 ms
45,732 KB
testcase_41 AC 298 ms
47,256 KB
testcase_42 AC 297 ms
47,256 KB
testcase_43 AC 160 ms
35,692 KB
testcase_44 AC 175 ms
35,928 KB
testcase_45 AC 334 ms
49,964 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.Linq;
using System.Linq.Expressions;
using System.Collections.Generic;
using Debug = System.Diagnostics.Debug;
using StringBuilder = System.Text.StringBuilder;
using System.Numerics;
using Point = System.Numerics.Complex;
using Number = System.Int32;
namespace Program
{
    public class Solver
    {
        public void Solve()
        {
            var n = sc.Integer();
            var a = sc.Integer(n);
            var b = new int[n];
            var T = sc.Integer();
            var s = new string[T];
            var p = new char[T];
            for (int i = 0; i < T; i++)
            {
                s[i] = sc.Scan();
                p[i] = sc.Char();
            }
            var ss = s.Distinct().OrderBy(x => x, StringComparer.Ordinal).ToArray();
            var tree = new AVLTree();
            for (int i = 0; i < ss.Length; i++)
                tree.Add(0);
            var A = new long[ss.Length];
            var B = new long[ss.Length];
            for (int i = 0; i < T; i++)
            {

                var id = Array.BinarySearch(ss, s[i], StringComparer.Ordinal);
                if (p[i] == '?')
                {
                    var pos = tree.LowerBound(A[id]);
                    IO.Printer.Out.WriteLine(ss.Length - pos);
                }
                else
                {
                    tree.Remove(A[id]);
                    var q = p[i] - 'A';
                    b[q]++;
                    B[id] += get(a[q], b[q]) * 1000000L;
                    A[id] = B[id] - i;
                    tree.Add(A[id]);
                }
            }
        }
        public long get(int x, int k)
        {
            return x * 50 + 500 * x / (8 + 2 * k);
        }

        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
#region AVLTree
public class AVLTree
{
    Node nil = new NilNode();
    Node root { get { return nil.lst; } }
    public AVLTree() { nil.lst = nil.rst = nil; }

    public int Count { get { return nil.lst.cnt; } }
    public long Value { get { return root.val; } }
    public void Add(long v) { Insert(v, LowerBound(v)); }
    public bool Remove(long v)
    {
        if (EqualRange(v) == 0) return false;
        RemoveAt(LowerBound(v));
        return true;
    }
    #region Impl
    public void Insert(long v, int k)
    {
        Node p = nil, t = nil.lst;
        if (t.cnt < k)
            throw new IndexOutOfRangeException();
        var isL = true;
        while (t != nil)
        {
            if (t.lst.cnt >= k) { p = t; t = t.lst; isL = true; }
            else { k -= (t.lst.cnt + 1); p = t; t = t.rst; isL = false; }
        }
        if (isL) { p.lst = CreateNode(v, p); Balance(true, p.lst); }
        else { p.rst = CreateNode(v, p); Balance(true, p.rst); }
    }
    public void RemoveAt(int k)
    {
        var t = nil.lst;
        while (t != nil)
        {
            if (t.lst.cnt > k) { t = t.lst; }
            else if (t.lst.cnt < k) { k -= t.lst.cnt + 1; t = t.rst; }
            else
            {
                if (t.lst == nil) { Node.Replace(t, t.rst); Balance(false, t.rst); }
                else
                {
                    var m = GetMaxNode(t.lst);
                    t.val = m.val;
                    Node.Replace(m, m.lst);
                    Balance(false, m.lst);
                }
                return;
            }
        }
    }
    public int EqualRange(long v) { return UpperBound(v) - LowerBound(v); }
    public int LowerBound(long v) { return lowerBound(nil.lst, v); }
    public int UpperBound(long v) { return upperBound(nil.lst, v); }
    public long this[int k] { get { return find(nil.lst, k); } }

    int lowerBound(Node t, long v)
    {
        if (t.cnt == 0) return 0;
        if (v <= t.val) return lowerBound(t.lst, v);
        else return t.lst.cnt + 1 + lowerBound(t.rst, v);
    }
    int upperBound(Node t, long v)
    {
        if (t.cnt == 0) return 0;
        if (t.val <= v) return t.lst.cnt + 1 + upperBound(t.rst, v);
        else return upperBound(t.lst, v);
    }
    long find(Node t, int k)
    {
        if (t.cnt <= k) throw new IndexOutOfRangeException();
        if (k == t.lst.cnt) return t.val;
        else if (k < t.lst.cnt) return find(t.lst, k);
        else return find(t.rst, k - (t.lst.cnt + 1));
    }
    #endregion
    class Node
    {
        int h;
        public int cnt;
        //public int Count { get { return cnt; } }
        public int Height { get { return h; } }
        public int Bias { get { return lst.Height - rst.Height; } }
        internal long val;
        internal Node par, lst, rst;
        internal bool rev;
        internal Node() { }
        internal Node(long v, Node p) { h = 1; cnt = 1; val = v; par = p; }
        public void Update()
        {
            h = 1 + Math.Max(lst.h, rst.h);
            cnt = 1 + lst.cnt + rst.cnt;
        }
        public override string ToString()
        {
            return string.Format("count:{0}, value:{1}", cnt, val);
        }

        #region Impl
        static internal void Replace(Node u, Node v)
        {
            var p = u.par;
            if (p.lst == u) p.lst = v;
            else p.rst = v;
            v.par = p;
        }
        static internal Node RotateL(Node v)
        {
            Node u = v.rst; Replace(v, u);
            v.rst = u.lst; u.lst.par = v;
            u.lst = v; v.par = u;
            v.Update();
            u.Update();
            return u;
        }
        static internal Node RotateR(Node u)
        {
            var v = u.lst; Replace(u, v);
            u.lst = v.rst; v.rst.par = u;
            v.rst = u; u.par = v;
            u.Update();
            v.Update();
            return v;
        }
        static internal Node RotateLR(Node t)
        {
            RotateL(t.lst);
            return RotateR(t);
        }
        static internal Node RotateRL(Node t)
        {
            RotateR(t.rst);
            return RotateL(t);
        }
        #endregion


    }
    class NilNode: Node { public override string ToString() { return "nil"; } }

    Node CreateNode() { return new Node() { lst = nil, rst = nil }; }
    Node CreateNode(long v, Node p) { return new Node(v, p) { lst = nil, rst = nil }; }

    void Balance(bool onInsert, Node t)
    {
        while (t.par != nil)
        {
            var u = t.par;
            var h = u.Height;
            if ((u.lst == t) == onInsert)
            {
                if (u.Bias == 2)
                {
                    if (u.lst.Bias >= 0) u = Node.RotateR(u);
                    else u = Node.RotateLR(u);
                }
                else u.Update();
            }
            else
            {
                if (u.Bias == -2)
                {
                    if (u.rst.Bias <= 0) u = Node.RotateL(u);
                    else u = Node.RotateRL(u);
                }
                else u.Update();
            }
            if (h == u.Height) break;
            t = u;
        }
        while (t.par != nil) { t.par.Update(); t = t.par; }
    }

    Node GetMaxNode(Node t)
    {
        while (t.rst != nil) t = t.rst;
        return t;
    }

}
#endregion
0