結果

問題 No.911 ラッキーソート
ユーザー H3PO4H3PO4
提出日時 2021-05-06 09:53:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,528 KB
最終ジャッジ日時 2024-09-14 02:44:13
合計ジャッジ時間 10,594 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 29 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,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 294 ms
33,368 KB
testcase_14 AC 287 ms
36,032 KB
testcase_15 AC 286 ms
32,892 KB
testcase_16 AC 287 ms
37,268 KB
testcase_17 AC 291 ms
35,216 KB
testcase_18 AC 285 ms
37,376 KB
testcase_19 AC 284 ms
36,296 KB
testcase_20 AC 289 ms
33,064 KB
testcase_21 AC 286 ms
34,696 KB
testcase_22 AC 273 ms
33,504 KB
testcase_23 AC 257 ms
31,052 KB
testcase_24 AC 245 ms
30,088 KB
testcase_25 AC 160 ms
22,148 KB
testcase_26 AC 130 ms
20,116 KB
testcase_27 AC 77 ms
15,252 KB
testcase_28 AC 55 ms
12,928 KB
testcase_29 AC 36 ms
11,648 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 30 ms
10,624 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 29 ms
10,624 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 30 ms
10,624 KB
testcase_38 AC 287 ms
37,528 KB
testcase_39 AC 281 ms
34,112 KB
testcase_40 AC 36 ms
11,264 KB
testcase_41 AC 289 ms
33,948 KB
testcase_42 AC 192 ms
24,836 KB
testcase_43 AC 297 ms
34,108 KB
testcase_44 AC 141 ms
32,764 KB
testcase_45 AC 172 ms
34,676 KB
testcase_46 AC 134 ms
34,644 KB
testcase_47 AC 154 ms
32,972 KB
testcase_48 AC 145 ms
33,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L, R = map(int, input().split())
A = tuple(map(int, input().split()))

table = [None] * 61


def is_impossible(flag):
    if flag: print(0);exit()


def set_table(x, q):
    if table[x] is None:
        table[x] = q
    else:
        is_impossible(table[x] != q)


for i in range(N - 1):
    diff = A[i + 1] - A[i]
    x = A[i + 1] ^ A[i]
    is_impossible(diff == 0)
    if diff > 0:
        set_table(x.bit_length() - 1, 0)
    elif diff < 0:
        set_table(x.bit_length() - 1, 1)


def f(x):
    if x < 0: return 0

    dp_same, dp_smaller = 1, 0
    for i in range(60, -1, -1):
        t = table[i]
        if (x >> i) & 1:
            if t is None:
                dp_smaller = dp_same + dp_smaller * 2
            elif t == 0:
                dp_same, dp_smaller = 0, dp_same + dp_smaller
        else:
            if t is None:
                dp_smaller *= 2
            elif t == 1:
                dp_same = 0
    return dp_same + dp_smaller


print(f(R) - f(L - 1))
0