結果

問題 No.2171 OR Assignment
ユーザー titiatitia
提出日時 2022-12-25 01:51:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,089 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 58,332 KB
最終ジャッジ日時 2024-11-18 09:00:38
合計ジャッジ時間 80,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,572 KB
testcase_01 AC 28 ms
17,568 KB
testcase_02 AC 26 ms
17,828 KB
testcase_03 AC 27 ms
17,448 KB
testcase_04 AC 28 ms
17,828 KB
testcase_05 AC 27 ms
25,476 KB
testcase_06 AC 26 ms
17,568 KB
testcase_07 AC 27 ms
17,700 KB
testcase_08 AC 26 ms
26,348 KB
testcase_09 AC 26 ms
17,576 KB
testcase_10 AC 26 ms
17,572 KB
testcase_11 AC 26 ms
17,576 KB
testcase_12 AC 3,380 ms
39,660 KB
testcase_13 AC 3,200 ms
58,332 KB
testcase_14 AC 3,256 ms
39,664 KB
testcase_15 AC 1,728 ms
21,048 KB
testcase_16 AC 1,897 ms
21,048 KB
testcase_17 AC 2,011 ms
38,900 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 #

# 似たような解法は考えていたが、高速化が難しかった。
# 自分が思いついたのはセグ木二分探索だが、TLE。
# 解説を見て、最後に現れたbitを管理する方法があると分かった。。

import sys
input = sys.stdin.readline

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

prev=[0]*30

mod=998244353

IND=[0]
DP=[1]

for i in range(1,N):
    NDP=[]
    NIND=[]
    a=A[i]
    
    for j in range(30):
        if (1<<j) & a!= 0:
            prev[j]=i

    sp=sorted(set(prev)|{i},reverse=True)
    SA=[a]*len(sp)
    now=a
    for j in range(len(sp)):
        now|=A[sp[j]]
        SA[j]=now

    s=i
    score=sum(DP)%mod
    ind=0

    for j in range(len(SA)):
        if j+1<len(SA) and SA[j]==SA[j+1]:
            continue
        else:
            while ind<len(IND) and IND[ind]>s:
                score=(score-DP[ind])%mod
                ind+=1

            NDP.append(score)
            NIND.append(sp[j])

            if j+1<len(sp):
                s=sp[j+1]

    DP=NDP
    IND=NIND
    #print(DP,IND)

print(sum(DP)%mod)
0