結果

問題 No.2171 OR Assignment
ユーザー titiatitia
提出日時 2022-12-25 01:50:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 714 ms / 3,500 ms
コード長 1,089 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,904 KB
最終ジャッジ日時 2024-11-18 08:58:10
合計ジャッジ時間 12,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,952 KB
testcase_01 AC 33 ms
52,200 KB
testcase_02 AC 33 ms
53,340 KB
testcase_03 AC 33 ms
52,752 KB
testcase_04 AC 33 ms
52,464 KB
testcase_05 AC 32 ms
52,792 KB
testcase_06 AC 31 ms
52,480 KB
testcase_07 AC 32 ms
54,128 KB
testcase_08 AC 32 ms
52,000 KB
testcase_09 AC 34 ms
52,444 KB
testcase_10 AC 34 ms
53,560 KB
testcase_11 AC 33 ms
52,000 KB
testcase_12 AC 370 ms
100,340 KB
testcase_13 AC 370 ms
100,236 KB
testcase_14 AC 375 ms
100,736 KB
testcase_15 AC 223 ms
103,828 KB
testcase_16 AC 245 ms
103,744 KB
testcase_17 AC 266 ms
100,208 KB
testcase_18 AC 463 ms
105,904 KB
testcase_19 AC 457 ms
103,828 KB
testcase_20 AC 563 ms
104,048 KB
testcase_21 AC 593 ms
104,488 KB
testcase_22 AC 612 ms
103,560 KB
testcase_23 AC 608 ms
105,296 KB
testcase_24 AC 680 ms
105,396 KB
testcase_25 AC 714 ms
104,540 KB
testcase_26 AC 679 ms
104,272 KB
testcase_27 AC 698 ms
104,236 KB
testcase_28 AC 619 ms
104,712 KB
testcase_29 AC 679 ms
104,956 KB
testcase_30 AC 604 ms
105,372 KB
testcase_31 AC 612 ms
105,012 KB
権限があれば一括ダウンロードができます

ソースコード

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