結果

問題 No.911 ラッキーソート
ユーザー mkawa2mkawa2
提出日時 2019-11-02 23:58:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,770 ms / 2,000 ms
コード長 1,326 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,224 KB
最終ジャッジ日時 2024-09-14 23:28:58
合計ジャッジ時間 30,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 1,118 ms
32,792 KB
testcase_14 AC 1,162 ms
33,816 KB
testcase_15 AC 1,230 ms
32,664 KB
testcase_16 AC 1,290 ms
34,968 KB
testcase_17 AC 1,227 ms
35,096 KB
testcase_18 AC 1,289 ms
34,960 KB
testcase_19 AC 1,252 ms
34,084 KB
testcase_20 AC 1,422 ms
32,712 KB
testcase_21 AC 1,652 ms
33,916 KB
testcase_22 AC 1,770 ms
33,144 KB
testcase_23 AC 1,635 ms
30,956 KB
testcase_24 AC 1,520 ms
29,608 KB
testcase_25 AC 1,074 ms
21,924 KB
testcase_26 AC 702 ms
19,756 KB
testcase_27 AC 436 ms
15,028 KB
testcase_28 AC 230 ms
12,904 KB
testcase_29 AC 66 ms
11,264 KB
testcase_30 AC 39 ms
10,624 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 AC 32 ms
10,624 KB
testcase_33 AC 31 ms
10,624 KB
testcase_34 AC 31 ms
10,624 KB
testcase_35 AC 32 ms
10,624 KB
testcase_36 AC 31 ms
10,624 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 1,184 ms
35,224 KB
testcase_39 AC 1,718 ms
33,624 KB
testcase_40 AC 70 ms
11,392 KB
testcase_41 AC 1,373 ms
33,612 KB
testcase_42 AC 1,059 ms
24,864 KB
testcase_43 AC 1,167 ms
33,948 KB
testcase_44 AC 279 ms
32,668 KB
testcase_45 AC 452 ms
34,196 KB
testcase_46 AC 239 ms
34,288 KB
testcase_47 AC 350 ms
33,004 KB
testcase_48 AC 379 ms
33,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
input = sys.stdin.readline
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")

def main():
    def bitdp(lr):
        if lr == -1: return 0
        dp = [[0] * 2 for _ in range(max_k + 1)]
        dp[0][0] = 1
        for i in range(max_k):
            lri = (lr >> (max_k - 1 - i)) & 1
            for f in range(2):
                pre = dp[i][f]
                if pre == 0: continue
                nf = f
                if dig[i] < 1 and (f == 1 or lri == 1):
                    dp[i + 1][nf] += pre
                if dig[i] > -1:
                    if lri == 1: nf = 1
                    dp[i + 1][nf] += pre
        # p2D(dp)
        return sum(dp[max_k])

    max_k = 61
    n, l, r = map(int, input().split())
    aa = list(map(int, input().split()))
    # p2D(aa)
    dig = [0] * max_k  # 1昇順 -1降順 0どちらでも
    for a0, a1 in zip(aa, aa[1:]):
        for i in range(max_k):
            a0k = (a0 >> (max_k - 1 - i)) & 1
            a1k = (a1 >> (max_k - 1 - i)) & 1
            if a0k != a1k:
                if dig[i] == a0k - a1k:
                    print(0)
                    exit()
                else:
                    dig[i] = a1k - a0k
                    break
    # print(dig)
    print(bitdp(r) - bitdp(l - 1))

main()
0