結果

問題 No.911 ラッキーソート
ユーザー claw88claw88
提出日時 2019-10-18 23:52:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,179 ms / 2,000 ms
コード長 7,783 bytes
コンパイル時間 2,474 ms
コンパイル使用メモリ 112,856 KB
実行使用メモリ 61,456 KB
最終ジャッジ日時 2023-09-08 02:56:45
合計ジャッジ時間 17,172 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
20,772 KB
testcase_01 AC 63 ms
20,824 KB
testcase_02 AC 60 ms
20,816 KB
testcase_03 AC 62 ms
20,800 KB
testcase_04 AC 61 ms
18,700 KB
testcase_05 AC 63 ms
20,656 KB
testcase_06 AC 62 ms
20,704 KB
testcase_07 AC 62 ms
20,812 KB
testcase_08 AC 62 ms
20,808 KB
testcase_09 AC 63 ms
20,756 KB
testcase_10 AC 62 ms
22,792 KB
testcase_11 AC 63 ms
20,752 KB
testcase_12 AC 63 ms
18,720 KB
testcase_13 AC 340 ms
54,168 KB
testcase_14 AC 393 ms
54,680 KB
testcase_15 AC 405 ms
54,504 KB
testcase_16 AC 407 ms
59,040 KB
testcase_17 AC 450 ms
54,832 KB
testcase_18 AC 476 ms
54,784 KB
testcase_19 AC 384 ms
54,528 KB
testcase_20 AC 481 ms
56,124 KB
testcase_21 AC 545 ms
56,088 KB
testcase_22 AC 550 ms
53,360 KB
testcase_23 AC 452 ms
56,880 KB
testcase_24 AC 528 ms
61,456 KB
testcase_25 AC 339 ms
49,412 KB
testcase_26 AC 251 ms
43,080 KB
testcase_27 AC 216 ms
40,544 KB
testcase_28 AC 116 ms
33,364 KB
testcase_29 AC 90 ms
29,956 KB
testcase_30 AC 74 ms
26,996 KB
testcase_31 AC 64 ms
20,808 KB
testcase_32 AC 62 ms
22,852 KB
testcase_33 AC 65 ms
22,816 KB
testcase_34 AC 63 ms
22,816 KB
testcase_35 AC 63 ms
20,724 KB
testcase_36 AC 63 ms
20,740 KB
testcase_37 AC 64 ms
20,756 KB
testcase_38 AC 380 ms
53,328 KB
testcase_39 AC 1,179 ms
53,984 KB
testcase_40 AC 73 ms
19,908 KB
testcase_41 AC 782 ms
54,488 KB
testcase_42 AC 359 ms
44,444 KB
testcase_43 AC 314 ms
56,832 KB
testcase_44 AC 200 ms
52,340 KB
testcase_45 AC 203 ms
54,760 KB
testcase_46 AC 197 ms
53,184 KB
testcase_47 AC 205 ms
56,468 KB
testcase_48 AC 189 ms
47,720 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 System.Linq;
using System.IO;
using SB = System.Text.StringBuilder;
//using System.Threading.Tasks;
//using System.Text.RegularExpressions;
//using System.Globalization;
//using System.Diagnostics;
using static System.Console;
using System.Numerics;
using static System.Math;
using pair = Pair<int, int>;

class Program
{
    static void Main()
    {
        //SetOut(new StreamWriter(OpenStandardOutput()) { AutoFlush = false });
        new Program().solve();
        Out.Flush();
    }
    readonly Scanner cin = new Scanner();
    readonly int[] dd = { 0, 1, 0, -1, 0 }; //→↓←↑
    readonly int mod = 1000000007;
    readonly int dom = 998244353;
    bool chmax<T>(ref T a, T b) where T : IComparable<T> { if (a.CompareTo(b) < 0) { a = b; return true; } return false; }
    bool chmin<T>(ref T a, T b) where T : IComparable<T> { if (b.CompareTo(a) < 0) { a = b; return true; } return false; }


    long calc(long L, long[] A)
    {

        var S = Convert.ToString(L, 2);
        int N = S.Length;
        long ret = 0;

        //WriteLine(S);

        //iビット目に初めて小さくなる (S[i]==1)
        for (int i = 0; i < N; i++)
        {
            if (S[i] == '0') continue;
            //jbit目を決める
            var ans = new int[N];
            //0 0通り,1 1とする 2 0とする 3 どちらでも
            for (int j = 0; j < N; j++)
            {
                if (j <= i) ans[j] = 1;
                else ans[j] = 3;
            }

            //自由なビット個数
            int M = N - (i + 1);


            //ベースとなるX
            var X = (L ^ (1L << M)) >> M << M;

            var C = new long[A.Length];
            Array.Copy(A, C, A.Length);
            bool flag = true;
            int last = 0;
            for (int j = 0; j < C.Length; j++)
            {
                C[j] ^= X;
            }
            for (int j = 1; j < C.Length; j++)
            {
                var a = C[j - 1] >> M;
                var b = C[j] >> M;

                if (a > b)
                {
                    flag = false;
                    break;
                }
                else if (a < b)
                {
                    dfs(last, j, ans, C, i + 1, i);
                    last = j;
                }
                else if (j == C.Length - 1)
                {
                    dfs(last, C.Length, ans, C, i + 1, i);
                }
            }
            if (!flag)
            {
                continue;
            }

            long sum = 1;
            for (int j = 0; j < N; j++)
            {
                if (ans[j] == 3)
                {
                    sum *= 2;
                }
                else if (ans[j] == 0)
                {
                    sum = 0;
                    break;
                }
            }
            ret += sum;
           
        }
        //x=Lのときも試す
        int add = 1;
        for (int j = 1; j < A.Length; j++)
        {
            if ((A[j - 1] ^ L) >= (A[j] ^ L))
            {
                add = 0;
                break;
            }
        }
        ret += add;
        return ret;
    }
    void dfs(int s, int t, int[] ans, long[] C, int depth, int debug)
    {
        if (depth == ans.Length && t - s >= 2)
        {
            ans[0] = 0;
        }
        if (t - s <= 1 || depth == ans.Length || ans[depth] == 0) return;

        int K = ans.Length - (depth + 1);
        int before = -1;
        int bad = -1;
        var L = new List<int>();
        for (int i = s; i < t; i++)
        {
            int x = (int)(C[i] >> K & 1);
            if (x != before)
            {
                L.Add(x);
                before = x;
                bad = i;
            }
        }

        //if (debug == 9)
        //{
        //    L.join();
        //}
        if (L.Count > 2)
        {

            ans[depth] = 0;
            return;
        }

        if (L.Count == 1)
        {
            dfs(s, t, ans, C, depth + 1, debug);
        }
        else if (L[0] == 0)
        {
            if (ans[depth] == 1)
            {
                ans[depth] = 0;
                return;
            }
            ans[depth] = 2;
            dfs(s, bad, ans, C, depth + 1, debug);
            dfs(bad, t, ans, C, depth + 1, debug);
        }
        else if (L[0] == 1)
        {
            if (ans[depth] == 2)
            {
                ans[depth] = 0;
                return;
            }
            ans[depth] = 1;
            dfs(s, bad, ans, C, depth + 1, debug);
            dfs(bad, t, ans, C, depth + 1, debug);
        }
    }


    void solve()
    {
        int N = cin.nextint;
        var L = cin.nextlong;
        var R = cin.nextlong;
        var A = cin.scanlong;
        //int cnt = 0;
        //for (int i = 0; i <= R; i++)
        //{
        //    bool flag = true;
        //    for (int j = 1; j < N; j++)
        //    {
        //        if ((A[j - 1] ^ i) >= (A[j] ^ i))
        //        {
        //            flag = false;
        //            break;
        //        }
        //    }
        //    if (flag)
        //    {
        //        cnt++;
        //        Write(i + " ");
        //    }
        //}
        //WriteLine();
        //WriteLine(cnt);
        //WriteLine();

        var p = calc(R, A);
        var q = 0L;
        if (L > 0)
        {
            q = calc(L - 1, A);
        }
        //WriteLine(p + " " + q);
        WriteLine(p - q);
    }

}


static class Ex
{
    public static void join<T>(this IEnumerable<T> values, string sep = " ") => WriteLine(string.Join(sep, values));
    public static string concat<T>(this IEnumerable<T> values) => string.Concat(values);
    public static string reverse(this string s) { var t = s.ToCharArray(); Array.Reverse(t); return t.concat(); }

    public static int lower_bound<T>(this IList<T> arr, T val) where T : IComparable<T>
    {
        int low = 0, high = arr.Count;
        int mid;
        while (low < high)
        {
            mid = ((high - low) >> 1) + low;
            if (arr[mid].CompareTo(val) < 0) low = mid + 1;
            else high = mid;
        }
        return low;
    }
    public static int upper_bound<T>(this IList<T> arr, T val) where T : IComparable<T>
    {
        int low = 0, high = arr.Count;
        int mid;
        while (low < high)
        {
            mid = ((high - low) >> 1) + low;
            if (arr[mid].CompareTo(val) <= 0) low = mid + 1;
            else high = mid;
        }
        return low;
    }
}

class Pair<T, U> : IComparable<Pair<T, U>> where T : IComparable<T> where U : IComparable<U>
{
    public T f; public U s;
    public Pair(T f, U s) { this.f = f; this.s = s; }
    public int CompareTo(Pair<T, U> a) => f.CompareTo(a.f) != 0 ? f.CompareTo(a.f) : s.CompareTo(a.s);
    public override string ToString() => $"{f} {s}";
}

class Scanner
{
    string[] s; int i;
    readonly char[] cs = new char[] { ' ' };
    public Scanner() { s = new string[0]; i = 0; }
    public string[] scan => ReadLine().Split();
    public int[] scanint => Array.ConvertAll(scan, int.Parse);
    public long[] scanlong => Array.ConvertAll(scan, long.Parse);
    public double[] scandouble => Array.ConvertAll(scan, double.Parse);
    public string next
    {
        get
        {
            if (i < s.Length) return s[i++];
            string st = ReadLine();
            while (st == "") st = ReadLine();
            s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
            i = 0;
            return next;
        }
    }
    public int nextint => int.Parse(next);
    public long nextlong => long.Parse(next);
    public double nextdouble => double.Parse(next);
}
0