結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー Lily89164763Lily89164763
提出日時 2020-07-17 21:51:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 4,515 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 116,596 KB
実行使用メモリ 45,536 KB
最終ジャッジ日時 2024-05-07 08:07:05
合計ジャッジ時間 4,889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
28,212 KB
testcase_01 AC 27 ms
25,264 KB
testcase_02 AC 27 ms
25,252 KB
testcase_03 AC 131 ms
42,072 KB
testcase_04 AC 145 ms
44,972 KB
testcase_05 AC 135 ms
42,176 KB
testcase_06 AC 124 ms
45,536 KB
testcase_07 AC 144 ms
42,888 KB
testcase_08 AC 36 ms
25,856 KB
testcase_09 AC 89 ms
32,256 KB
testcase_10 AC 133 ms
43,016 KB
testcase_11 AC 28 ms
25,368 KB
testcase_12 AC 142 ms
43,276 KB
testcase_13 AC 146 ms
43,016 KB
testcase_14 AC 144 ms
43,148 KB
testcase_15 AC 28 ms
25,208 KB
testcase_16 AC 28 ms
25,360 KB
testcase_17 AC 28 ms
25,084 KB
testcase_18 AC 27 ms
25,248 KB
testcase_19 AC 27 ms
25,084 KB
testcase_20 AC 28 ms
25,220 KB
testcase_21 AC 27 ms
25,340 KB
testcase_22 AC 27 ms
23,220 KB
testcase_23 AC 37 ms
26,372 KB
testcase_24 AC 68 ms
30,572 KB
testcase_25 AC 121 ms
43,224 KB
testcase_26 AC 48 ms
24,528 KB
testcase_27 AC 79 ms
31,428 KB
testcase_28 AC 98 ms
32,628 KB
testcase_29 AC 125 ms
41,468 KB
testcase_30 AC 141 ms
42,676 KB
testcase_31 AC 55 ms
27,420 KB
testcase_32 AC 47 ms
26,568 KB
testcase_33 AC 130 ms
44,440 KB
testcase_34 AC 27 ms
25,216 KB
testcase_35 AC 28 ms
25,108 KB
testcase_36 AC 27 ms
25,348 KB
testcase_37 AC 27 ms
24,964 KB
testcase_38 AC 27 ms
27,288 KB
testcase_39 AC 28 ms
25,472 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.Collections.Generic;
using CompLib.Collections;
using CompLib.Collections.Generic;
using CompLib.Util;

public class Program
{
    // private int N;

    public void Solve()
    {
        var sc = new Scanner();
        int n = sc.NextInt();
        int[] a = sc.IntArray();
        int[] b = sc.IntArray();

        int[] indexOf = new int[n + 1];
        for (int i = 0; i < n; i++)
        {
            indexOf[b[i]] = i;
        }

        int[] tmp = new int[n];
        for (int i = 0; i < n; i++)
        {
            tmp[i] = indexOf[a[i]];
        }

        long ans = 0;
        var st = new SegmentTree<int>(n, (l, r) => l + r, 0);
        for (int i = 0; i < n; i++)
        {
            ans += st.Query(tmp[i], n);
            st[tmp[i]]++;
        }

        Console.WriteLine(ans);
    }

    public static void Main(string[] args) => new Program().Solve();
}

namespace CompLib.Collections.Generic
{
    using System;

    public class SegmentTree<T>
    {
        private readonly int N;
        private T[] _array;

        private T _identity;
        private Func<T, T, T> _operation;

        public SegmentTree(int size, Func<T, T, T> operation, T identity)
        {
            N = 1;
            while (N < size) N *= 2;
            _identity = identity;
            _operation = operation;
            _array = new T[N * 2];
            for (int i = 1; i < N * 2; i++)
            {
                _array[i] = _identity;
            }
        }

        /// <summary>
        /// A[i]をnに更新 O(log N)
        /// </summary>
        /// <param name="i"></param>
        /// <param name="n"></param>
        public void Update(int i, T n)
        {
            i += N;
            _array[i] = n;
            while (i > 1)
            {
                i /= 2;
                _array[i] = _operation(_array[i * 2], _array[i * 2 + 1]);
            }
        }

        private T Query(int left, int right, int k, int l, int r)
        {
            if (r <= left || right <= l)
            {
                return _identity;
            }

            if (left <= l && r <= right)
            {
                return _array[k];
            }

            return _operation(Query(left, right, k * 2, l, (l + r) / 2),
                Query(left, right, k * 2 + 1, (l + r) / 2, r));
        }

        /// <summary>
        /// A[left] op A[left+1] ... op A[right-1]を求める
        /// </summary>
        /// <param name="left"></param>
        /// <param name="right"></param>
        /// <returns></returns>
        public T Query(int left, int right)
        {
            return Query(left, right, 1, 0, N);
        }

        public T this[int i]
        {
            set { Update(i, value); }
            get { return _array[i + N]; }
        }
    }
}

namespace CompLib.Util
{
    using System;
    using System.Linq;

    class Scanner
    {
        private string[] _line;
        private int _index;
        private const char Separator = ' ';

        public Scanner()
        {
            _line = new string[0];
            _index = 0;
        }

        public string Next()
        {
            if (_index >= _line.Length)
            {
                string s;
                do
                {
                    s = Console.ReadLine();
                } while (s.Length == 0);

                _line = s.Split(Separator);
                _index = 0;
            }

            return _line[_index++];
        }

        public string ReadLine()
        {
            _index = _line.Length;
            return Console.ReadLine();
        }

        public int NextInt() => int.Parse(Next());
        public long NextLong() => long.Parse(Next());
        public double NextDouble() => double.Parse(Next());
        public decimal NextDecimal() => decimal.Parse(Next());
        public char NextChar() => Next()[0];
        public char[] NextCharArray() => Next().ToCharArray();

        public string[] Array()
        {
            string s = Console.ReadLine();
            _line = s.Length == 0 ? new string[0] : s.Split(Separator);
            _index = _line.Length;
            return _line;
        }

        public int[] IntArray() => Array().Select(int.Parse).ToArray();
        public long[] LongArray() => Array().Select(long.Parse).ToArray();
        public double[] DoubleArray() => Array().Select(double.Parse).ToArray();
        public decimal[] DecimalArray() => Array().Select(decimal.Parse).ToArray();
    }
}
0