結果
問題 | No.911 ラッキーソート |
ユーザー | mkawa2 |
提出日時 | 2021-03-15 16:22:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,297 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 35,504 KB |
最終ジャッジ日時 | 2024-11-07 03:48:08 |
合計ジャッジ時間 | 12,596 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
10,880 KB |
testcase_01 | AC | 34 ms
10,880 KB |
testcase_02 | AC | 32 ms
10,880 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 33 ms
10,880 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 1,936 ms
22,200 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | AC | 147 ms
11,648 KB |
testcase_30 | RE | - |
testcase_31 | AC | 36 ms
11,008 KB |
testcase_32 | WA | - |
testcase_33 | RE | - |
testcase_34 | WA | - |
testcase_35 | RE | - |
testcase_36 | AC | 34 ms
10,880 KB |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | AC | 136 ms
11,648 KB |
testcase_41 | RE | - |
testcase_42 | TLE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | AC | 131 ms
33,580 KB |
ソースコード
import sys sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 10**16 # md = 998244353 md = 10**9+7 from functools import lru_cache n, l, r = LI() aa = LI() # for a in aa: print(bin(a)[2:].zfill(12)) bb = [-1]*60 def chk(k, l, r): if k < 0: return True m = -1 pb = aa[l] >> k & 1 for i, a in enumerate(aa[l+1:r], l+1): b = a >> k & 1 if b != pb: if m == -1: m = i else: return False pb = b if m == -1: if chk(k-1, l, r) == False: return False else: if bb[k] == -1: bb[k] = 1-pb elif bb[k] != 1-pb: return False if chk(k-1, l, m) == False: return False if chk(k-1, m, r) == False: return False return True if chk(60, 0, n) == False: print(0) exit() # kケタ見終わって、その桁以降が以下でもよい(1)か、未満でなければいけない(0)か @lru_cache(None) def solve(k, f): if k == 60: return f res = 0 if f: if lim[k]: if bb[k] != 1: res += solve(k+1, 1) if bb[k] != 0: res += solve(k+1, 1) else: if bb[k] != 1: res += solve(k+1, 1) if bb[k] != 0: res += solve(k+1, 0) else: if lim[k]: if bb[k] != 1: res += solve(k+1, 1) if bb[k] != 0: res += solve(k+1, 0) else: if bb[k] != 1: res += solve(k+1, 0) if bb[k] != 0: res += solve(k+1, 0) return res lim = [r >> k & 1 for k in range(60)] # print(lim) R = solve(0, 1) solve.cache_clear() L=0 if l>0: lim = [(l-1) >> k & 1 for k in range(60)] L = solve(0, 1) # print(R, L) print(R-L)