結果

問題 No.911 ラッキーソート
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-22 17:56:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,061 ms / 2,000 ms
コード長 1,664 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 158,156 KB
最終ジャッジ日時 2024-06-08 07:53:30
合計ジャッジ時間 26,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 49 ms
61,696 KB
testcase_04 AC 47 ms
61,952 KB
testcase_05 AC 53 ms
64,000 KB
testcase_06 AC 43 ms
59,904 KB
testcase_07 AC 54 ms
63,872 KB
testcase_08 AC 49 ms
63,104 KB
testcase_09 AC 53 ms
62,720 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 49 ms
61,440 KB
testcase_12 AC 51 ms
61,440 KB
testcase_13 AC 1,051 ms
154,212 KB
testcase_14 AC 1,013 ms
137,952 KB
testcase_15 AC 974 ms
158,156 KB
testcase_16 AC 966 ms
127,900 KB
testcase_17 AC 994 ms
127,672 KB
testcase_18 AC 950 ms
129,492 KB
testcase_19 AC 963 ms
137,940 KB
testcase_20 AC 896 ms
156,652 KB
testcase_21 AC 824 ms
142,448 KB
testcase_22 AC 765 ms
138,068 KB
testcase_23 AC 688 ms
138,656 KB
testcase_24 AC 617 ms
122,996 KB
testcase_25 AC 402 ms
103,452 KB
testcase_26 AC 353 ms
88,320 KB
testcase_27 AC 193 ms
83,840 KB
testcase_28 AC 143 ms
78,848 KB
testcase_29 AC 112 ms
76,544 KB
testcase_30 AC 85 ms
75,904 KB
testcase_31 AC 59 ms
67,328 KB
testcase_32 AC 38 ms
52,992 KB
testcase_33 AC 54 ms
64,384 KB
testcase_34 AC 37 ms
52,864 KB
testcase_35 AC 57 ms
65,408 KB
testcase_36 AC 49 ms
61,952 KB
testcase_37 AC 49 ms
63,488 KB
testcase_38 AC 1,061 ms
130,324 KB
testcase_39 AC 734 ms
130,860 KB
testcase_40 AC 108 ms
76,544 KB
testcase_41 AC 950 ms
138,064 KB
testcase_42 AC 547 ms
124,328 KB
testcase_43 AC 1,041 ms
130,864 KB
testcase_44 AC 1,036 ms
154,348 KB
testcase_45 AC 1,028 ms
137,764 KB
testcase_46 AC 1,019 ms
133,112 KB
testcase_47 AC 1,057 ms
146,356 KB
testcase_48 AC 874 ms
133,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L, R = map(int, input().split())
A = list(map(int, input().split()))
U = 62

bit = [3] * U


def dfs(d, A):
    if d < 0:
        return
    a0 = []
    a1 = []
    c01 = 0
    c10 = 0
    for i, a in enumerate(A):
        now = (a >> d) & 1
        if now:
            a1.append(a)
        else:
            a0.append(a)
        if i == 0:
            pre = now
            continue
        if pre == 0 and now == 1:
            c01 += 1
        if pre == 1 and now == 0:
            c10 += 1
        pre = now

    pair = (c01, c10)
    if pair == (0, 0):
        bit[d] &= 3
    elif pair == (0, 1):
        bit[d] &= 2
    elif pair == (1, 0):
        bit[d] &= 1
    else:
        bit[d] &= 0

    if a0:
        dfs(d - 1, a0)
    if a1:
        dfs(d - 1, a1)


dfs(U - 1, A)
dp = [[[0] * 2 for _ in range(2)] for _ in range(U + 1)]
dp[0][0][0] = 1
for i in range(U):
    shift = U-i-1
    D = bit[shift]
    Rbit = (R >> shift) & 1
    Lbit = (L >> shift) & 1
    for j in range(2):
        for k in range(2):
            for d in range(2):
                if (D >> d) & 1:
                    ni = i + 1
                    nj = j
                    nk = k
                    if nj == 0:
                        if d < Rbit:
                            nj = 1
                        if d > Rbit:
                            continue
                    if nk == 0:
                        if d > Lbit:
                            nk = 1
                        if d < Lbit:
                            continue
                    dp[ni][nj][nk] += dp[i][j][k]

ans = 0
for j in range(2):
    for k in range(2):
        ans += dp[U][j][k]
print(ans)
0