結果

問題 No.2139 K Consecutive Sushi
ユーザー 👑 kakel-sankakel-san
提出日時 2023-09-23 00:02:35
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 6,776 bytes
コンパイル時間 1,141 ms
コンパイル使用メモリ 68,784 KB
実行使用メモリ 52,628 KB
最終ジャッジ日時 2023-09-23 00:02:44
合計ジャッジ時間 8,784 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
21,960 KB
testcase_01 AC 61 ms
22,060 KB
testcase_02 AC 62 ms
21,804 KB
testcase_03 AC 359 ms
50,264 KB
testcase_04 AC 358 ms
52,628 KB
testcase_05 AC 377 ms
50,116 KB
testcase_06 AC 340 ms
48,044 KB
testcase_07 AC 391 ms
52,108 KB
testcase_08 AC 243 ms
44,092 KB
testcase_09 AC 250 ms
46,184 KB
testcase_10 AC 260 ms
44,192 KB
testcase_11 AC 263 ms
46,328 KB
testcase_12 AC 238 ms
46,236 KB
testcase_13 AC 61 ms
21,928 KB
testcase_14 AC 63 ms
21,952 KB
testcase_15 AC 63 ms
23,912 KB
testcase_16 AC 62 ms
21,984 KB
testcase_17 AC 61 ms
21,924 KB
testcase_18 AC 71 ms
24,048 KB
testcase_19 AC 71 ms
22,072 KB
testcase_20 AC 70 ms
24,028 KB
testcase_21 AC 74 ms
23,988 KB
testcase_22 AC 71 ms
22,096 KB
testcase_23 AC 88 ms
25,148 KB
testcase_24 AC 148 ms
34,136 KB
testcase_25 AC 239 ms
44,492 KB
testcase_26 AC 87 ms
25,456 KB
testcase_27 AC 135 ms
32,888 KB
testcase_28 AC 135 ms
35,588 KB
testcase_29 AC 97 ms
25,264 KB
testcase_30 AC 181 ms
35,096 KB
testcase_31 AC 332 ms
50,184 KB
testcase_32 AC 96 ms
25,496 KB
権限があれば一括ダウンロードができます

ソースコード

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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var a = NList;
        WriteLine(Sushi(n, k, a));
    }
    static long Sushi(int n, int k, int[] a)
    {
        var set = new AvlTree<long>();
        set.Insert(0);
        var dlist = new long[n + 1];
        for (var i = 0; i < n; ++i)
        {
            var min = set.ElementAt(0);
            dlist[i + 1] = min + a[i];
            set.Insert(dlist[i + 1]);
            if (i + 1 - k >= 0) set.Delete(dlist[i + 1 - k]);
        }
        var ans = 0L;
        foreach (var ai in a) ans += ai;
        return ans - set.ElementAt(0);
    }
    public class AvlTree<T> where T: IComparable<T>
    {
        private class Node<U> where U: IComparable<U>
        {
            public U Value;
            public Node<U> Lc = null;
            public Node<U> Rc = null;
            public int Height;
            public int Count;
            public int CCount;
            public Node(int height, U value)
            {
                Height = height;
                Count = 1;
                CCount = 1;
                Value = value;
            }
        }
        private Node<T> root = null;
        private bool active;
        static int GetHeight(Node<T> t)
        {
            return t == null ? 0 : t.Height;
        }
        static int GetCount(Node<T> t)
        {
            return t == null ? 0 : t.Count;
        }
        static int GetBalance(Node<T> t)
        {
            return GetHeight(t.Lc) - GetHeight(t.Rc);
        }
        static void Recalc(Node<T> t)
        {
            t.Height = 1 + Math.Max(GetHeight(t.Lc), GetHeight(t.Rc));
            t.Count = t.CCount + GetCount(t.Lc) + GetCount(t.Rc);
        }
        static Node<T> RotateLeft(Node<T> t)
        {
            Node<T> u = t.Rc;
            Node<T> t2 = u.Lc;
            u.Lc = t;
            t.Rc = t2;
            Recalc(u.Lc);
            Recalc(u);
            return u;
        }
        static Node<T> RotateRight(Node<T> t)
        {
            Node<T> u = t.Lc;
            Node<T> t2 = u.Rc;
            u.Rc = t;
            t.Lc = t2;
            Recalc(u.Rc);
            Recalc(u);
            return u;
        }
        static Node<T> RotateLR(Node<T> t)
        {
            t.Lc = RotateLeft(t.Lc);
            return RotateRight(t);
        }
        static Node<T> RotateRL(Node<T> t)
        {
            t.Rc = RotateRight(t.Rc);
            return RotateLeft(t);
        }
        Node<T> BalanceLeft(Node<T> t)
        {
            if (!active) return t;
            var h = GetHeight(t);
            if (GetBalance(t) > 1)
            {
                if (GetBalance(t.Lc) < 0) t = RotateLR(t);
                else t = RotateRight(t);
            }
            Recalc(t);
            active = h != GetHeight(t);
            return t;
        }
        Node<T> BalanceRight(Node<T> t)
        {
            if (!active) return t;
            var h = GetHeight(t);
            if (GetBalance(t) < -1)
            {
                if (GetBalance(t.Rc) > 0) t = RotateRL(t);
                else t = RotateLeft(t);
            }
            Recalc(t);
            active = h != GetHeight(t);
            return t;
        }
        public void Insert(T value)
        {
            active = false;
            root = Insert(root, value);
        }
        Node<T> Insert(Node<T> cur, T value)
        {
            if (cur == null)
            {
                active = true;
                return new Node<T>(1, value);
            }
            var d = value.CompareTo(cur.Value);
            if (d < 0)
            {
                cur.Lc = Insert(cur.Lc, value);
                return BalanceLeft(cur);
            }
            else if (d > 0)
            {
                cur.Rc = Insert(cur.Rc, value);
                return BalanceRight(cur);
            }
            else
            {
                ++cur.CCount;
                Recalc(cur);
                return cur;
            }
        }
        public void Delete(T value)
        {
            active = false;
            root = Delete(root, value);
        }
        Node<T> Delete(Node<T> cur, T value)
        {
            if (cur == null) return null;
            var d = value.CompareTo(cur.Value);
            if (d < 0)
            {
                cur.Lc = Delete(cur.Lc, value);
                return BalanceRight(cur);
            }
            else if (d > 0)
            {
                cur.Rc = Delete(cur.Rc, value);
                return BalanceLeft(cur);
            }
            else
            {
                --cur.CCount;
                if (cur.CCount == 0)
                {
                    if (cur.Lc != null)
                    {
                        Node<T> del = null;
                        var max = DeleteMax(cur.Lc, ref del);
                        cur.Lc = max;
                        cur.Value = del.Value;
                        cur.CCount = del.CCount;
                        return BalanceRight(cur);
                    }
                    else
                    {
                        active = true;
                        return cur.Rc;
                    }
                }
                else
                {
                    Recalc(cur);
                    return cur;
                }
            }
        }
        Node<T> DeleteMax(Node<T> t, ref Node<T> del)
        {
            if (t.Rc == null)
            {
                active = true;
                del = t;
                return t.Lc;
            }
            else
            {
                var max = DeleteMax(t.Rc, ref del);
                t.Rc = max;
                return BalanceLeft(t);
            }
        }
        public T ElementAt(int pos)
        {
            var t = ElementAt(root, pos);
            if (t == null) return default;
            return t.Value;
        }
        Node<T> ElementAt(Node<T> cur, int pos)
        {
            if (pos < GetCount(cur.Lc)) return ElementAt(cur.Lc, pos);
            if (pos < GetCount(cur.Lc) + cur.CCount) return cur;
            if (pos < cur.Count) return ElementAt(cur.Rc, pos);
            return null;
        }
    }
}
0