結果

問題 No.2171 OR Assignment
ユーザー titiatitia
提出日時 2022-12-25 01:11:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,058 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 215,808 KB
最終ジャッジ日時 2024-11-18 08:25:26
合計ジャッジ時間 76,243 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
162,960 KB
testcase_01 AC 35 ms
60,036 KB
testcase_02 AC 35 ms
59,432 KB
testcase_03 AC 31 ms
60,996 KB
testcase_04 AC 31 ms
60,936 KB
testcase_05 AC 31 ms
59,716 KB
testcase_06 AC 31 ms
59,980 KB
testcase_07 AC 31 ms
161,084 KB
testcase_08 AC 30 ms
59,796 KB
testcase_09 AC 30 ms
59,804 KB
testcase_10 AC 31 ms
60,852 KB
testcase_11 AC 31 ms
162,076 KB
testcase_12 AC 2,881 ms
111,516 KB
testcase_13 AC 2,894 ms
213,676 KB
testcase_14 AC 3,037 ms
111,272 KB
testcase_15 AC 756 ms
215,808 KB
testcase_16 AC 1,077 ms
114,228 KB
testcase_17 AC 740 ms
212,572 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

def seg_function(x,y): # Segment treeで扱うfunction
    return x|y

seg_el=1<<(N.bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

for i in range(N): # Aを対応する箇所へupdate
    SEG[i+seg_el]=A[i]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=0

    while L<R:
        if L & 1:
            ANS=seg_function(ANS , SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS=seg_function(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS

def bisect_on_SEG(l,x): # l以上で、x以上の最小のindexを返す。ただし、存在しない場合はNを返す。
    L=l+seg_el
    R=seg_el*2-1
    while L<R:
        if SEG[L]>=x:
            break
        if L & 1:
            L+=1
        L>>=1
        R>>=1
 
    if SEG[L]<x:
        return N
 
    while L<seg_el:
        if SEG[L*2]>=x:
            L=L*2
        else:
            L=L*2+1
 
    return L-seg_el

mod=998244353

IND=[0]
DP=[1]

for i in range(1,N):
    NDP=[]
    NIND=[]
    a=A[i]
    s=i
    OK=i
    while True:
        NG=-1
        while OK>NG+1:
            mid=(OK+NG)//2

            if getvalues(mid,i+1)==a:
                OK=mid
            else:
                NG=mid

        score=0
        for ix in range(len(IND)):
            if IND[ix]<=s:
                score=(score+DP[ix])%mod

        NDP.append(score)
        NIND.append(OK)
        if OK==0:
            break
        else:
            OK=OK-1
            a|=A[OK]
            s=OK

    DP=NDP
    IND=NIND

print(sum(DP)%mod)
0