結果

問題 No.911 ラッキーソート
ユーザー ei1333333ei1333333
提出日時 2019-10-18 11:31:42
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 2,404 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 47,476 KB
最終ジャッジ日時 2024-06-25 14:01:59
合計ジャッジ時間 9,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,920 KB
testcase_01 AC 24 ms
17,792 KB
testcase_02 AC 24 ms
17,920 KB
testcase_03 AC 24 ms
18,048 KB
testcase_04 AC 25 ms
18,048 KB
testcase_05 AC 24 ms
18,048 KB
testcase_06 AC 24 ms
18,048 KB
testcase_07 AC 24 ms
17,792 KB
testcase_08 AC 24 ms
18,048 KB
testcase_09 AC 24 ms
17,920 KB
testcase_10 AC 24 ms
17,792 KB
testcase_11 AC 25 ms
18,048 KB
testcase_12 AC 25 ms
17,920 KB
testcase_13 AC 182 ms
46,500 KB
testcase_14 AC 185 ms
47,416 KB
testcase_15 AC 181 ms
46,640 KB
testcase_16 AC 188 ms
46,832 KB
testcase_17 AC 192 ms
46,808 KB
testcase_18 AC 191 ms
47,296 KB
testcase_19 AC 192 ms
47,320 KB
testcase_20 AC 192 ms
46,620 KB
testcase_21 AC 195 ms
46,600 KB
testcase_22 AC 187 ms
42,216 KB
testcase_23 AC 181 ms
43,296 KB
testcase_24 AC 169 ms
45,056 KB
testcase_25 AC 118 ms
36,736 KB
testcase_26 AC 98 ms
34,176 KB
testcase_27 AC 59 ms
23,680 KB
testcase_28 AC 43 ms
20,352 KB
testcase_29 AC 33 ms
19,328 KB
testcase_30 AC 30 ms
18,304 KB
testcase_31 AC 25 ms
18,048 KB
testcase_32 AC 24 ms
18,048 KB
testcase_33 AC 24 ms
18,048 KB
testcase_34 AC 24 ms
17,792 KB
testcase_35 AC 24 ms
17,792 KB
testcase_36 AC 25 ms
18,176 KB
testcase_37 AC 25 ms
17,792 KB
testcase_38 AC 187 ms
46,964 KB
testcase_39 AC 184 ms
43,436 KB
testcase_40 AC 33 ms
19,328 KB
testcase_41 AC 195 ms
47,128 KB
testcase_42 AC 134 ms
38,528 KB
testcase_43 AC 185 ms
47,476 KB
testcase_44 AC 143 ms
46,740 KB
testcase_45 AC 147 ms
47,464 KB
testcase_46 AC 150 ms
47,364 KB
testcase_47 AC 145 ms
46,788 KB
testcase_48 AC 136 ms
42,412 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program
{
  Scanner cin;

  int N;
  long L, R;
  long[] A;

  int[] ok;


  long T;
  long[,] dp;

  long rec(int idx, int high)
  {
    if(idx == -1)
    {
      return 1;
    }
    if(dp[idx, high] != -1)
    {
      return dp[idx, high];
    }
    long ret = 0;
    for (int i = 0; i <= (high == 1 ? ((T >> idx) & 1) : 1); i++)
    {

      if (((ok[idx] >> i) & 1) == 0)
      {
        continue;
      }
      ret += rec(idx - 1, high & (((T >> idx) & 1) == i ? 1 : 0));
    }
    dp[idx, high] = ret;
    return ret;
  }

  long beet(long S)
  {
    if (S < 0) return 0;
    dp = new long[61, 2];
    for (int i = 0; i < 61; i++)
    {
      for (int j = 0; j < 2; j++)
      {
        dp[i, j] = -1;
      }
    }
    T = S;
    return rec(60, 1);
  }

  void myon()
  {
    cin = new Scanner();

    N = cin.nextInt();
    L = cin.nextLong();
    R = cin.nextLong();

    A = new long[N];
    for(int i = 0; i < N; i++)
    {
      A[i] = cin.nextLong();
    }


    ok = new int[61];
    long mask = 0, mask2 = 0;
    for (int i = 60; i >= 0; i--)
    {
      mask2 |= 1L << i;

      for (int j = 0; j < 2; j++)
      {
        long next = mask | ((long)j << i);
        long pre = -1;

        for (int k = 0; k < N; k++)
        {
          long cur = (next ^ A[k]) & mask2;
          if (cur < pre)
          {
            pre = -1;
            break;
          }
          pre = cur;
        }
        if (pre != -1)
        {
          ok[i] |= 1 << j;
        }
      }

      if (((ok[i] >> 0) & 1) == 0)
      {
        mask |= 1L << i;
      }
    }
    Console.WriteLine(beet(R) - beet(L - 1));
  }

  static void Main(string[] args)
  {
    new Program().myon();
  }
}

class Scanner
{
  string[] s;
  int i;
  readonly char[] cs = new char[] { ' ' };

  public Scanner()
  {
    s = new string[0];
    i = 0;
  }

  public string next()
  {
    if (i < s.Length) return s[i++];
    string st = Console.ReadLine();
    while (st == "") st = Console.ReadLine();
    s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
    if (s.Length == 0) return next();
    i = 0;
    return s[i++];
  }

  public string nextLine()
  {
    return Console.ReadLine();
  }

  public int nextInt()
  {
    return int.Parse(next());
  }

  public long nextLong()
  {
    return long.Parse(next());
  }

  public double nextDouble()
  {
    return double.Parse(next());
  }
}
0